From 52c61c5b18b4eaebfc4f75618bd7b462790f92c0 Mon Sep 17 00:00:00 2001 From: jank Date: Wed, 4 Jun 2025 08:38:16 +0200 Subject: [PATCH] fix: Replace zone detection with the new one --- frontend/src/app/app.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/app.config.ts b/frontend/src/app/app.config.ts index 679c5e4..9196f16 100644 --- a/frontend/src/app/app.config.ts +++ b/frontend/src/app/app.config.ts @@ -1,4 +1,4 @@ -import { ApplicationConfig, provideExperimentalZonelessChangeDetection } from '@angular/core'; +import { ApplicationConfig, provideZonelessChangeDetection } from '@angular/core'; import { provideRouter } from '@angular/router'; import { FontAwesomeModule } from '@fortawesome/angular-fontawesome'; @@ -12,7 +12,7 @@ export const appConfig: ApplicationConfig = { provideRouter(routes), FontAwesomeModule, provideHttpClient(withInterceptors([httpInterceptor])), - provideExperimentalZonelessChangeDetection(), + provideZonelessChangeDetection(), provideAnimationsAsync(), ], };