From b3180ceb737bd949a075323820bdfdf1b03b3237 Mon Sep 17 00:00:00 2001 From: vcoppe Date: Thu, 20 Jun 2024 00:32:30 +0200 Subject: [PATCH] remove console log --- website/src/lib/components/toolbar/tools/routing/Routing.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/website/src/lib/components/toolbar/tools/routing/Routing.ts b/website/src/lib/components/toolbar/tools/routing/Routing.ts index 268cc492..dd785565 100644 --- a/website/src/lib/components/toolbar/tools/routing/Routing.ts +++ b/website/src/lib/components/toolbar/tools/routing/Routing.ts @@ -22,7 +22,6 @@ export const routingProfileSelectItem = writable({ }); derived([routingProfile, locale], ([profile, l]) => [profile, l]).subscribe(([profile, l]) => { - console.log(profile, l); if (profile !== get(routingProfileSelectItem).value && l !== null) { routingProfileSelectItem.update((item) => { item.value = profile;