Overview
src/components/search/IntelligentAutoComplete.tsx:20 calls getSearchSuggestions(value) synchronously on every keystroke via useMemo([value]) with no debounce, running the full suggestion search on each character typed. Debounce the input before computing suggestions.
Overview
src/components/search/IntelligentAutoComplete.tsx:20 calls getSearchSuggestions(value) synchronously on every keystroke via useMemo([value]) with no debounce, running the full suggestion search on each character typed. Debounce the input before computing suggestions.