--- trunk/docs/components/Searching/SearchModal.tsx 2024/08/30 10:10:56 625 +++ trunk/docs/components/Searching/SearchModal.tsx 2024/09/07 09:38:45 626 @@ -17,10 +17,7 @@ }; export default function SearchModal({ onClose }: SearchModalProps) { - const [query, isQueued, setQuery] = useDebouncedState( - null, - 500, - ); + const [query, , setQuery] = useDebouncedState(null, 500); const [results, setResults] = useState(null); const [isLoading, setIsLoading] = useState(false); const [isNotFound, setIsNotFound] = useState(false); @@ -32,25 +29,17 @@ const controller = new AbortController(); - if (!isLoading) { - setIsLoading(true); - } + setIsLoading(true); fetch(`/search?q=${encodeURIComponent(query)}`, { signal: controller.signal, }) .then(response => response.json()) .then(data => { - if (isNotFound) { - setIsNotFound(false); - } - + setIsNotFound(false); setIsLoading(false); setResults(data.results); - - if (data.results.length === 0) { - setIsNotFound(true); - } + setIsNotFound(data.results.length === 0); }) .catch(console.error);