diff --git a/client/src/hooks/Input/useAutoSave.ts b/client/src/hooks/Input/useAutoSave.ts index c8c6fa8336..95cd0d1933 100644 --- a/client/src/hooks/Input/useAutoSave.ts +++ b/client/src/hooks/Input/useAutoSave.ts @@ -105,10 +105,10 @@ export const useAutoSave = ({ return; } - /** Use shorter debounce for saving text (65ms) to capture rapid typing */ + /** Use shorter debounce for saving text (25ms) to capture rapid typing */ const handleInputFast = debounce( (value: string) => setDraft({ id: conversationId, value }), - 65, + 25, ); /** Use longer debounce for clearing empty values (850ms) to prevent accidental draft loss */