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); } };