From 954214ff3a7800a04aee312e75f7b6826db4d839 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Wed, 5 Mar 2025 16:07:58 -0800 Subject: [PATCH] Remove 1000 character limit from textfield --- app/frontend/src/components/QuestionInput/QuestionInput.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/frontend/src/components/QuestionInput/QuestionInput.tsx b/app/frontend/src/components/QuestionInput/QuestionInput.tsx index c16ddc1be7..1a9d3309ec 100644 --- a/app/frontend/src/components/QuestionInput/QuestionInput.tsx +++ b/app/frontend/src/components/QuestionInput/QuestionInput.tsx @@ -59,8 +59,6 @@ export const QuestionInput = ({ onSend, disabled, placeholder, clearOnSend, init const onQuestionChange = (_ev: React.FormEvent, newValue?: string) => { if (!newValue) { setQuestion(""); - } else if (newValue.length <= 1000) { - setQuestion(newValue); } };