diff --git a/client/src/components/Main/TextChat.jsx b/client/src/components/Main/TextChat.jsx index 0038f37a7a..969a6222ac 100644 --- a/client/src/components/Main/TextChat.jsx +++ b/client/src/components/Main/TextChat.jsx @@ -317,9 +317,9 @@ export default function TextChat({ messages }) { const changeHandler = (e) => { const { value } = e.target; - if (isSubmitting && (value === '' || value === '\n')) { - return; - } + // if (isSubmitting && (value === '' || value === '\n')) { + // return; + // } dispatch(setText(value)); };