From 1bbf4c61c0862fb62551f9dee51477062d38c83e Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Tue, 25 Jun 2024 17:11:27 +0100 Subject: [PATCH] Storybook still not working though --- lib/core/src/lib/testing/core.story.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/src/lib/testing/core.story.module.ts b/lib/core/src/lib/testing/core.story.module.ts index 2f4e026609..57cc4e9a8c 100644 --- a/lib/core/src/lib/testing/core.story.module.ts +++ b/lib/core/src/lib/testing/core.story.module.ts @@ -20,9 +20,10 @@ import { CoreModule } from '../core.module'; import { TranslateModule } from '@ngx-translate/core'; import { provideTranslations } from '../translation/translation.service'; import { provideAnimations } from '@angular/platform-browser/animations'; +import { AuthModule } from '../auth/oidc/auth.module'; @NgModule({ - imports: [TranslateModule.forRoot(), CoreModule.forRoot()], + imports: [AuthModule.forRoot(), TranslateModule.forRoot(), CoreModule.forRoot()], providers: [provideTranslations('adf-core', 'assets/adf-core'), provideAnimations()] }) export class CoreStoryModule {}