Remove analytics events from toggle function

This commit is contained in:
2024-07-11 20:25:56 -05:00
committed by GitHub
parent a5a0a84f75
commit a512cce797
-9
View File
@@ -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;
}
}