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