diff --git a/src/angular/frontend/src/app/app.config.ts b/src/angular/frontend/src/app/app.config.ts index 9d5e290..c8b279a 100644 --- a/src/angular/frontend/src/app/app.config.ts +++ b/src/angular/frontend/src/app/app.config.ts @@ -1,10 +1,9 @@ -import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; -import { provideRouter } from '@angular/router'; +import {ApplicationConfig, provideZoneChangeDetection} from '@angular/core'; +import {provideRouter} from '@angular/router'; -import { routes } from './app.routes'; +import {routes} from './app.routes'; import {GandalfClientBaseAPI} from './clients/gandalf/gandalf-client'; import {provideHttpClient} from '@angular/common/http'; -import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; export const appConfig: ApplicationConfig = { providers: [ @@ -14,6 +13,6 @@ export const appConfig: ApplicationConfig = { { provide: GandalfClientBaseAPI, useValue: 'http://localhost:5055' - }, provideClientHydration(withEventReplay()) + } ] };