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
When I add a breakpoint in Safari to the URL input for on:input, I see that e.aborted=true within the internals of the debounce functionality. I think this component is essentially disabling itself after 5 seconds.
Similarly, because the AddBookmarkForm is being processed on page mount (rather than on modal open), I believe you are essentially unable to add a new bookmark if more than 5 seconds have passed since you opened the page.
The text was updated successfully, but these errors were encountered:
Hello @ItsMeBrianD! Thank you for all the details, I will investigate it further after resolving some other issues. I will update you with my findings.
Describe the bug
If you wait too long, or attempt to add multiple bookmarks, the URL field does not respond to a link being input
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Metadata for the pasted / inputted URL
Screenshots
Desktop (please complete the following information):
Additional context
I did a bit of digging and I think the issue has to do with the abort signal here: https://github.com/goniszewski/grimoire/blob/main/src/lib/components/AddBookmarkForm/AddBookmarkForm.svelte#L191
When I add a breakpoint in Safari to the URL input for on:input, I see that
e.aborted=true
within the internals of the debounce functionality. I think this component is essentially disabling itself after 5 seconds.Similarly, because the
AddBookmarkForm
is being processed on page mount (rather than on modal open), I believe you are essentially unable to add a new bookmark if more than 5 seconds have passed since you opened the page.The text was updated successfully, but these errors were encountered: