mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-09 19:28:06 +01:00
[PM-2014] fix: CoreAuthModule
duplicate import
This commit is contained in:
parent
bd7f362536
commit
adca0449b6
@ -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: [
|
||||
|
@ -1 +1,2 @@
|
||||
export * from "./auth.module";
|
||||
export * from "./core";
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user