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
This is causing issues on Firefox where excessive calls to history/location APIs (that updateUrl wraps) will put Firefox into a state where subsequent calls will trigger a SecurityError: The operation is insecure error.
The fix is two pronged:
Do not call updateUrl if the new computed state is not different than the previous one
Debounce the actual history/location APIs calls within updateUrl
The text was updated successfully, but these errors were encountered:
This is causing issues on Firefox where excessive calls to history/location APIs (that
updateUrl
wraps) will put Firefox into a state where subsequent calls will trigger aSecurityError: The operation is insecure
error.The fix is two pronged:
updateUrl
if the new computed state is not different than the previous oneupdateUrl
The text was updated successfully, but these errors were encountered: