From 3e0de64b29908d836d32837d204fcd80041b8808 Mon Sep 17 00:00:00 2001 From: not-nullptr <62841684+not-nullptr@users.noreply.github.com> Date: Sun, 13 Apr 2025 13:50:58 +0100 Subject: [PATCH] Reapply "fix: remove debug logging" This reverts commit 1d9890fb37e9c93b532ed6cf56a78fa6ab112af6. --- src/lib/components/layout/Navbar/Base.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/components/layout/Navbar/Base.svelte b/src/lib/components/layout/Navbar/Base.svelte index 3b02dd1..8987bfb 100644 --- a/src/lib/components/layout/Navbar/Base.svelte +++ b/src/lib/components/layout/Navbar/Base.svelte @@ -79,7 +79,6 @@ const newIndex = items.findIndex((i) => i.activeMatch(e.to?.url.pathname || ""), ); - console.log(oldIndex, newIndex); if (newIndex < oldIndex) { goingLeft.set(true); } else {