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
I've noticed that sometimes, very very rarely, results show up in the search bar, but not on the actual search results.
Possible causes
This is probably an issue with how the value debounce works for the search bar. It takes into account how many characters a user has typed (including spaces) and has a threshold of simply "search on every three characters". iirc it doesn't search on X wait time.
It's a pretty simple system, but it helps avoids some potential extra requests on our ManticoreSearch engine.
It may be worth it unifying and migrating to React Query hooks to handle these.
The text was updated successfully, but these errors were encountered:
I've noticed that sometimes, very very rarely, results show up in the search bar, but not on the actual search results.
Possible causes
This is probably an issue with how the value debounce works for the search bar. It takes into account how many characters a user has typed (including spaces) and has a threshold of simply "search on every three characters". iirc it doesn't search on X wait time.
It's a pretty simple system, but it helps avoids some potential extra requests on our ManticoreSearch engine.
It may be worth it unifying and migrating to React Query hooks to handle these.
The text was updated successfully, but these errors were encountered: