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
Whilst using the search feature, I noticed that it can cause sluggishness in the typing of the text, as seen in this video.
2026-04-06.16-53-33.mp4
This can easily be fixed by adding a debounce to the search, so that a search isn't activated every single time a new character has been entered. I demonstrated this process by adding my own via the browser console (code & video shown below).
Whilst the debounce is minimal, it improves performance significantly; although, I would not recommend using a predefined debounce time as the debounce time required to combat the jitter varies between devices (throttling my cpu 4x makes this debounce effectively useless).
Whilst using the search feature, I noticed that it can cause sluggishness in the typing of the text, as seen in this video.
2026-04-06.16-53-33.mp4
This can easily be fixed by adding a debounce to the search, so that a search isn't activated every single time a new character has been entered. I demonstrated this process by adding my own via the browser console (code & video shown below).
2026-04-06.17-07-05.mp4
Whilst the debounce is minimal, it improves performance significantly; although, I would not recommend using a predefined debounce time as the debounce time required to combat the jitter varies between devices (throttling my cpu 4x makes this debounce effectively useless).