remove gtag calls

This commit is contained in:
2024-11-29 19:21:50 -06:00
parent e8a67ce79f
commit 0bbdf05214
-7
View File
@@ -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;
}