(frontend) increase chat message limit to 2000 characters

Expand text area input character limit from default to 2000 characters
to allow users more space for detailed chat messages.

Provides better user experience for longer form communication within
chat interface while maintaining reasonable message size constraints.
This commit is contained in:
lebaudantoine
2025-09-04 20:57:43 +02:00
committed by aleb_the_flash
parent 67d61b8cf7
commit afd7139d39

View File

@@ -101,7 +101,7 @@ export const ChatInput = ({
}}
placeholderStyle={'strong'}
spellCheck={false}
maxLength={500}
maxLength={2000}
aria-label={t('textArea.label')}
/>
<Button