We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a24784 commit d53b4b2Copy full SHA for d53b4b2
src/lib/core/LocationLite.svelte.ts
@@ -43,7 +43,6 @@ export class LocationLite implements Location {
43
const cleanups = [] as (() => void)[];
44
['popstate', 'hashchange'].forEach((event) => {
45
cleanups.push(on(globalThis.window, event, () => {
46
- console.log(event);
47
this.#innerState.url.href = globalThis.window?.location?.href;
48
this.#innerState.state = globalThis.window?.history?.state;
49
}));
0 commit comments