[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: ignore debounce for empty input (#299)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

abeer0
autofix-ci[bot]
and committed by
GitHub
1c87dedf c03d6ca5

+2 -1
+2 -1
app/pages/index.vue
··· 14 14 }, 250) 15 15 16 16 function handleSearch() { 17 - debouncedNavigate() 17 + // If input is empty, navigate immediately (no need to debounce) 18 + return searchQuery.value.trim() ? debouncedNavigate() : router.push('/search') 18 19 } 19 20 20 21 useSeoMeta({