From fd10f4ceac6b5c63ce0efb091de59442e4e39d3b Mon Sep 17 00:00:00 2001 From: g-jaskowski Date: Fri, 18 Jul 2025 13:27:20 +0200 Subject: [PATCH] [ACS-9859] replace deprecated APIs and modules --- projects/aca-content/src/lib/store/app-store.module.ts | 2 -- projects/aca-content/src/lib/testing/app-testing.module.ts | 1 - 2 files changed, 3 deletions(-) diff --git a/projects/aca-content/src/lib/store/app-store.module.ts b/projects/aca-content/src/lib/store/app-store.module.ts index 6de5b1db8..af9ff00fe 100644 --- a/projects/aca-content/src/lib/store/app-store.module.ts +++ b/projects/aca-content/src/lib/store/app-store.module.ts @@ -40,7 +40,6 @@ import { UploadEffects, ViewerEffects } from './effects'; -import { INITIAL_STATE } from './initial-state'; import { SearchAiEffects } from './effects/search-ai.effects'; @NgModule({ @@ -48,7 +47,6 @@ import { SearchAiEffects } from './effects/search-ai.effects'; provideStore( { app: appReducer }, { - initialState: INITIAL_STATE, runtimeChecks: { strictStateImmutability: false, strictActionImmutability: false diff --git a/projects/aca-content/src/lib/testing/app-testing.module.ts b/projects/aca-content/src/lib/testing/app-testing.module.ts index 57ef82beb..a2a2cb983 100644 --- a/projects/aca-content/src/lib/testing/app-testing.module.ts +++ b/projects/aca-content/src/lib/testing/app-testing.module.ts @@ -47,7 +47,6 @@ import { provideRouter } from '@angular/router'; provideStore( { app: appReducer }, { - initialState: INITIAL_STATE, runtimeChecks: { strictStateImmutability: false, strictActionImmutability: false