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 loading a non-SSR page and pressing the browser's back button while
the page is still loading, it's possible for `current.url` to still be
the default value of `null`, which then causes the `popState` function
to throw the following uncaught error:
```
Uncaught (in promise) TypeError: Cannot destructure property 'href' of 'object null' as it is null.
at strip_hash (url.js?v=3a24e001:84:30)
at client.js?v=3a24e001:2227:52
```
This is from
https://github.com/sveltejs/kit/blob/e41a8e24b71cb9e9ee249ddfe732a3d0721d40bf/packages/kit/src/runtime/client/client.js#L2234
0 commit comments