From a512cce797b58be7002cf360f92ecfa1d83e988c Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 11 Jul 2024 20:25:56 -0500 Subject: [PATCH] Remove analytics events from toggle function --- src/app/app.component.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 5fc1a8e..da54974 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -47,15 +47,6 @@ export class AppComponent { } toggleView() { - if (this.showAll) { - this.googleAnalyticsService.emitEvent('select_content', { - event_label: 'timezone_closest', - }); - } else { - this.googleAnalyticsService.emitEvent('select_content', { - event_label: 'timezone_list', - }); - } this.showAll = !this.showAll; } }