diff --git a/apps/web/src/app/auth/auth.module.ts b/apps/web/src/app/auth/auth.module.ts index fa89c37853b..583e2cdc547 100644 --- a/apps/web/src/app/auth/auth.module.ts +++ b/apps/web/src/app/auth/auth.module.ts @@ -1,10 +1,9 @@ import { NgModule } from "@angular/core"; -import { CoreAuthModule } from "./core/core.module"; import { WebauthnLoginSettingsModule } from "./settings/webauthn-login-settings"; @NgModule({ - imports: [CoreAuthModule, WebauthnLoginSettingsModule], + imports: [WebauthnLoginSettingsModule], declarations: [], providers: [], exports: [ diff --git a/apps/web/src/app/auth/index.ts b/apps/web/src/app/auth/index.ts index 1dced9682f5..fb09223bd9e 100644 --- a/apps/web/src/app/auth/index.ts +++ b/apps/web/src/app/auth/index.ts @@ -1 +1,2 @@ export * from "./auth.module"; +export * from "./core"; diff --git a/apps/web/src/app/core/core.module.ts b/apps/web/src/app/core/core.module.ts index 3fe52a5af8f..083fb4baa9a 100644 --- a/apps/web/src/app/core/core.module.ts +++ b/apps/web/src/app/core/core.module.ts @@ -25,6 +25,7 @@ import { MemoryStorageService } from "@bitwarden/common/services/memoryStorage.s import { PasswordRepromptService as PasswordRepromptServiceAbstraction } from "@bitwarden/common/vault/abstractions/password-reprompt.service"; import { PolicyListService } from "../admin-console/core/policy-list.service"; +import { CoreAuthModule } from "../auth"; import { PasswordRepromptService } from "../vault/core/password-reprompt.service"; import { BroadcasterMessagingService } from "./broadcaster-messaging.service"; @@ -41,7 +42,7 @@ import { WebPlatformUtilsService } from "./web-platform-utils.service"; @NgModule({ declarations: [], - imports: [CommonModule, JslibServicesModule], + imports: [CommonModule, JslibServicesModule, CoreAuthModule], providers: [ InitService, RouterService,