Skip to content

Commit c0412a2

Browse files
authored
[AI Search] set debounce to 100ms from 250ms (#54884)
1 parent d4a4526 commit c0412a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/search/components/hooks/useAISearchAutocomplete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type UseCombinedSearchReturn = {
2525
clearAutocompleteResults: () => void
2626
}
2727

28-
const DEBOUNCE_TIME = 250 // In milliseconds
28+
const DEBOUNCE_TIME = 100 // In milliseconds
2929

3030
// Results are only cached for the current session
3131
// We cache results so if a user presses backspace, we can show the results immediately without burdening the API

0 commit comments

Comments
 (0)