From d4ff804a95f98f35a23f88d6f3c68c0c1bba90dc Mon Sep 17 00:00:00 2001 From: Jesse Winton Date: Mon, 9 Jun 2025 14:33:33 -0400 Subject: [PATCH] remove console log --- src/lib/actions/analytics.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/actions/analytics.ts b/src/lib/actions/analytics.ts index f0b32507b..bb7e6d3a1 100644 --- a/src/lib/actions/analytics.ts +++ b/src/lib/actions/analytics.ts @@ -60,7 +60,6 @@ export const trackEvent = (eventArgs?: string | TrackEventArgs): void => { if (!eventArgs || ENV.TEST) return; const path = page.route.id?.replace(/\(([^()]*)\)/g, '') ?? ''; - console.log(path); const name = typeof eventArgs === 'string' ? eventArgs : eventArgs.name; const data = typeof eventArgs === 'string' ? { path } : { ...eventArgs.data, path };