From 2e22068ad5032f9be42d93263efe6159e33e1e7f Mon Sep 17 00:00:00 2001 From: Nouman Tahir Date: Tue, 11 Oct 2022 18:51:14 +0500 Subject: [PATCH] debounce time increase --- src/components/editorElements/tagInput/view/tagInputView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/editorElements/tagInput/view/tagInputView.tsx b/src/components/editorElements/tagInput/view/tagInputView.tsx index c046ee0f3..dd68cbf58 100644 --- a/src/components/editorElements/tagInput/view/tagInputView.tsx +++ b/src/components/editorElements/tagInput/view/tagInputView.tsx @@ -89,7 +89,7 @@ const TagInput = ({ value, handleTagChanged, intl, isPreviewActive, autoFocus, s scrollRef.current.scrollToEnd(); } }, 100); - }, 200), + }, 500), [tags], );