diff --git a/src/pages/SearchPlantPage.tsx b/src/pages/SearchPlantPage.tsx index 308a6e9..ee72d0a 100644 --- a/src/pages/SearchPlantPage.tsx +++ b/src/pages/SearchPlantPage.tsx @@ -14,13 +14,11 @@ interface SearchPlantPageProps { onClose: () => void; } -// TODO: 서스펜스 폴백 수정 - const SearchPlantPage = ({ onClose }: SearchPlantPageProps) => { const [query, setQuery] = useState(''); // eslint-disable-next-line react-hooks/exhaustive-deps - const debouncedSetQuery = useCallback(debounce(setQuery, 200), []); + const debouncedSetQuery = useCallback(debounce(setQuery, 500), []); return (