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 };