From 0bbdf05214931a01ce305b1c79d6cbca29495194 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 29 Nov 2024 19:21:50 -0600 Subject: [PATCH] remove gtag calls --- src/app/app.component.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 0249dd7..148fd97 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -3,7 +3,6 @@ import { interval, startWith } from 'rxjs'; import { GetClosestTimezoneFrom, Timezone } from './timezone/models/timezone.model'; import { TimezoneService } from './timezone/services/timezone.service'; -declare let gtag: Function; @Component({ selector: 'app-root', templateUrl: './app.component.html', @@ -39,12 +38,6 @@ export class AppComponent { } } - ngOnInit(): void { - gtag('config', 'G-48B6CKS0V6', { - page_path: '/', - }); - } - toggleView() { this.showAll = !this.showAll; }