From 9e54ca717da6c11ce44d866dccec6fcc4d369e0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=B1=EC=9A=B1?= Date: Fri, 13 Oct 2023 17:06:42 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20search=20debounce=20250=20->=2050=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/@core/components/Spotlight/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/@core/components/Spotlight/index.tsx b/app/src/@core/components/Spotlight/index.tsx index 56a890ad..933c7636 100644 --- a/app/src/@core/components/Spotlight/index.tsx +++ b/app/src/@core/components/Spotlight/index.tsx @@ -32,7 +32,7 @@ export const Spotlight = () => { const theme = useTheme(); const device = useDeviceType(); const [input, setInput] = useState(''); - const debouncedInput = useDebounce(input, 250); + const debouncedInput = useDebounce(input, 50); const [search, searchResult] = useLazyQuery(GET_SPOTLIGHT); const size = (searchResult.data?.getSpotlight.userPreviews.length ?? 0) +