Skip to content

Commit 5e80824

Browse files
committed
chore: change search debounce to 100ms
1 parent 65885cb commit 5e80824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/composables/useGlobalSearch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { debounce } from 'perfect-debounce'
44
// Pages that have their own local filter using ?q
55
const pagesWithLocalFilter = new Set(['~username', 'org'])
66

7-
const SEARCH_DEBOUNCE_MS = 250
7+
const SEARCH_DEBOUNCE_MS = 100
88

99
export function useGlobalSearch(place: 'header' | 'content' = 'content') {
1010
const { settings } = useSettings()

0 commit comments

Comments
 (0)