diff --git a/apps/web/src/app/admin-console/organizations/users/organization-user.module.ts b/apps/web/src/app/admin-console/organizations/users/organization-user.module.ts index 6194cfbdff..6799ae3ac4 100644 --- a/apps/web/src/app/admin-console/organizations/users/organization-user.module.ts +++ b/apps/web/src/app/admin-console/organizations/users/organization-user.module.ts @@ -2,11 +2,12 @@ import { ScrollingModule } from "@angular/cdk/scrolling"; import { NgModule } from "@angular/core"; import { LooseComponentsModule, SharedModule } from "../../../shared"; +import { UserVerificationModule } from "../../../shared/components/user-verification"; import { EnrollMasterPasswordReset } from "./enroll-master-password-reset.component"; @NgModule({ - imports: [SharedModule, ScrollingModule, LooseComponentsModule], + imports: [SharedModule, ScrollingModule, LooseComponentsModule, UserVerificationModule], declarations: [EnrollMasterPasswordReset], exports: [EnrollMasterPasswordReset], }) diff --git a/apps/web/src/app/billing/organizations/organization-billing.module.ts b/apps/web/src/app/billing/organizations/organization-billing.module.ts index 17d825fbae..8d3dbecd7b 100644 --- a/apps/web/src/app/billing/organizations/organization-billing.module.ts +++ b/apps/web/src/app/billing/organizations/organization-billing.module.ts @@ -1,6 +1,7 @@ import { NgModule } from "@angular/core"; import { LooseComponentsModule, SharedModule } from "../../shared"; +import { UserVerificationModule } from "../../shared/components/user-verification"; import { AdjustSubscription } from "./adjust-subscription.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"; @NgModule({ - imports: [SharedModule, LooseComponentsModule, OrganizationBillingRoutingModule], + imports: [ + SharedModule, + LooseComponentsModule, + OrganizationBillingRoutingModule, + UserVerificationModule, + ], declarations: [ AdjustSubscription, BillingSyncApiKeyComponent,