Skip to content

Commit 954214f

Browse files
authored
Remove 1000 character limit from textfield
1 parent bb9492f commit 954214f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

app/frontend/src/components/QuestionInput/QuestionInput.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ export const QuestionInput = ({ onSend, disabled, placeholder, clearOnSend, init
5959
const onQuestionChange = (_ev: React.FormEvent<HTMLInputElement | HTMLTextAreaElement>, newValue?: string) => {
6060
if (!newValue) {
6161
setQuestion("");
62-
} else if (newValue.length <= 1000) {
63-
setQuestion(newValue);
6462
}
6563
};
6664

0 commit comments

Comments
 (0)