From d53b4b2aed7dc7a95b29d648f322075428599df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 4 Sep 2025 20:34:52 -0600 Subject: [PATCH] chore: Clean undesired console.log() call --- src/lib/core/LocationLite.svelte.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/core/LocationLite.svelte.ts b/src/lib/core/LocationLite.svelte.ts index 62914d4..c7e3fc3 100644 --- a/src/lib/core/LocationLite.svelte.ts +++ b/src/lib/core/LocationLite.svelte.ts @@ -43,7 +43,6 @@ export class LocationLite implements Location { const cleanups = [] as (() => void)[]; ['popstate', 'hashchange'].forEach((event) => { cleanups.push(on(globalThis.window, event, () => { - console.log(event); this.#innerState.url.href = globalThis.window?.location?.href; this.#innerState.state = globalThis.window?.history?.state; }));