From cf65ddc0abcb1255d5d5e455f41e837f5f3e45b6 Mon Sep 17 00:00:00 2001 From: Nik Gilmore Date: Mon, 18 Aug 2025 15:50:31 -0700 Subject: [PATCH] Add OrganizationWarningsModule to imports for AccessIntelligenceModule --- .../app/dirt/access-intelligence/access-intelligence.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/access-intelligence.module.ts b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/access-intelligence.module.ts index 25baf2e0fed..fbe06d2bdc0 100644 --- a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/access-intelligence.module.ts +++ b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/access-intelligence.module.ts @@ -14,12 +14,13 @@ import { EncryptService } from "@bitwarden/common/key-management/crypto/abstract import { PasswordStrengthServiceAbstraction } from "@bitwarden/common/tools/password-strength/password-strength.service.abstraction"; import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service"; import { KeyService } from "@bitwarden/key-management"; +import { OrganizationWarningsModule } from "@bitwarden/web-vault/app/billing/organizations/warnings/organization-warnings.module"; import { AccessIntelligenceRoutingModule } from "./access-intelligence-routing.module"; import { RiskInsightsComponent } from "./risk-insights.component"; @NgModule({ - imports: [RiskInsightsComponent, AccessIntelligenceRoutingModule], + imports: [RiskInsightsComponent, AccessIntelligenceRoutingModule, OrganizationWarningsModule], providers: [ { provide: MemberCipherDetailsApiService,