mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
fix: reduce debounce time for input handling in auto-save
This commit is contained in:
parent
3c23f273f9
commit
1966579e31
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ export const useAutoSave = ({
|
|||
return;
|
||||
}
|
||||
|
||||
const handleInput = debounce((value: string) => setDraft({ id: conversationId, value }), 750);
|
||||
const handleInput = debounce((value: string) => setDraft({ id: conversationId, value }), 65);
|
||||
|
||||
const eventListener = (e: Event) => {
|
||||
const target = e.target as HTMLTextAreaElement;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue