From b11ee47367bf2ce3e63fe58ccf0c3f86ce3ea929 Mon Sep 17 00:00:00 2001 From: Avi Upadhyayula <69180850+aviupadhyayula@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:58:36 -0400 Subject: [PATCH] Bump debounce timeout to 400ms (#640) * Bump debounce timeout to 400ms * Make linter happy --- frontend/components/SearchBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/SearchBar.tsx b/frontend/components/SearchBar.tsx index 60c0dca30..56ba502c8 100644 --- a/frontend/components/SearchBar.tsx +++ b/frontend/components/SearchBar.tsx @@ -353,7 +353,7 @@ export const SearchBarTextItem = ({ } return { ...inpt, [param]: nameInput } }), - 200, + 400, ) storeTimeout(timeoutId) }, [nameInput])