From a5a0a84f75736158f18ac6a7498ecfd697a59809 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 11 Jul 2024 20:20:09 -0500 Subject: [PATCH] Remove Google analytics --- src/app/app.module.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index f89b78f..14b6c51 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -3,13 +3,12 @@ import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; -import { GoogleAnalyticsService } from './services/google-analytics.service'; import { TimezoneListComponent } from './timezone/components/timezone-list/timezone-list.component'; import { TimezoneService } from './timezone/services/timezone.service'; @NgModule({ declarations: [AppComponent, TimezoneListComponent], imports: [BrowserModule, BrowserAnimationsModule], - providers: [TimezoneService, GoogleAnalyticsService], + providers: [TimezoneService], bootstrap: [AppComponent], }) export class AppModule {}