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