From 6e520b0cd7ee24df8ab0ea40961e2cc26ffb9bb4 Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 11 Nov 2025 22:50:33 +0100 Subject: [PATCH] Refactor app configuration for improved code consistency and formatting --- src/angular/frontend/src/app/app.config.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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()) + } ] };