Skip to content

Commit d53b4b2

Browse files
committed
chore: Clean undesired console.log() call
1 parent 3a24784 commit d53b4b2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/lib/core/LocationLite.svelte.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export class LocationLite implements Location {
4343
const cleanups = [] as (() => void)[];
4444
['popstate', 'hashchange'].forEach((event) => {
4545
cleanups.push(on(globalThis.window, event, () => {
46-
console.log(event);
4746
this.#innerState.url.href = globalThis.window?.location?.href;
4847
this.#innerState.state = globalThis.window?.history?.state;
4948
}));

0 commit comments

Comments
 (0)