mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
[AC-1431] Add missing UserVerificationModule import (#5555)
This commit is contained in:
parent
ace1e309fa
commit
107c9052b8
@ -2,11 +2,12 @@ import { ScrollingModule } from "@angular/cdk/scrolling";
|
|||||||
import { NgModule } from "@angular/core";
|
import { NgModule } from "@angular/core";
|
||||||
|
|
||||||
import { LooseComponentsModule, SharedModule } from "../../../shared";
|
import { LooseComponentsModule, SharedModule } from "../../../shared";
|
||||||
|
import { UserVerificationModule } from "../../../shared/components/user-verification";
|
||||||
|
|
||||||
import { EnrollMasterPasswordReset } from "./enroll-master-password-reset.component";
|
import { EnrollMasterPasswordReset } from "./enroll-master-password-reset.component";
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [SharedModule, ScrollingModule, LooseComponentsModule],
|
imports: [SharedModule, ScrollingModule, LooseComponentsModule, UserVerificationModule],
|
||||||
declarations: [EnrollMasterPasswordReset],
|
declarations: [EnrollMasterPasswordReset],
|
||||||
exports: [EnrollMasterPasswordReset],
|
exports: [EnrollMasterPasswordReset],
|
||||||
})
|
})
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { NgModule } from "@angular/core";
|
import { NgModule } from "@angular/core";
|
||||||
|
|
||||||
import { LooseComponentsModule, SharedModule } from "../../shared";
|
import { LooseComponentsModule, SharedModule } from "../../shared";
|
||||||
|
import { UserVerificationModule } from "../../shared/components/user-verification";
|
||||||
|
|
||||||
import { AdjustSubscription } from "./adjust-subscription.component";
|
import { AdjustSubscription } from "./adjust-subscription.component";
|
||||||
import { BillingSyncApiKeyComponent } from "./billing-sync-api-key.component";
|
import { BillingSyncApiKeyComponent } from "./billing-sync-api-key.component";
|
||||||
@ -15,7 +16,12 @@ import { SecretsManagerEnrollComponent } from "./secrets-manager/enroll.componen
|
|||||||
import { SubscriptionHiddenComponent } from "./subscription-hidden.component";
|
import { SubscriptionHiddenComponent } from "./subscription-hidden.component";
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [SharedModule, LooseComponentsModule, OrganizationBillingRoutingModule],
|
imports: [
|
||||||
|
SharedModule,
|
||||||
|
LooseComponentsModule,
|
||||||
|
OrganizationBillingRoutingModule,
|
||||||
|
UserVerificationModule,
|
||||||
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
AdjustSubscription,
|
AdjustSubscription,
|
||||||
BillingSyncApiKeyComponent,
|
BillingSyncApiKeyComponent,
|
||||||
|
Loading…
Reference in New Issue
Block a user