You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The global search bar triggers a query on every single keystroke. This causes excessive database reads and UI lag. Implement a custom useDebounce hook to delay the API call until the user has stopped typing for 500ms.
The global search bar triggers a query on every single keystroke. This causes excessive database reads and UI lag. Implement a custom
useDebouncehook to delay the API call until the user has stopped typing for 500ms.