Skip to content

Commit d4ff804

Browse files
remove console log
1 parent 592c9e0 commit d4ff804

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/lib/actions/analytics.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export const trackEvent = (eventArgs?: string | TrackEventArgs): void => {
6060
if (!eventArgs || ENV.TEST) return;
6161

6262
const path = page.route.id?.replace(/\(([^()]*)\)/g, '') ?? '';
63-
console.log(path);
6463
const name = typeof eventArgs === 'string' ? eventArgs : eventArgs.name;
6564
const data = typeof eventArgs === 'string' ? { path } : { ...eventArgs.data, path };
6665

0 commit comments

Comments
 (0)