Skip to content

Commit 7e68039

Browse files
committed
Fix
1 parent 43fcf1a commit 7e68039

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/theme/components/layout/global-search/GlobalSearch.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export const GlobalSearch = forwardRef<HTMLInputElement, GlobalSearchProps>(
4343
: `${searchResults.length} result${searchResults.length === 1 ? '' : 's'} available`
4444
: '',
4545
)
46-
}, STATUS_DEBOUNCE_MS)
46+
// debounce
47+
}, 1000)
4748

4849
return () => clearTimeout(timeout)
4950
}, [searchTerm, searchResults.length])

0 commit comments

Comments
 (0)