From 04c1e7613ac5c1185472e9e8338cfead4d0bcbbe Mon Sep 17 00:00:00 2001 From: --global <> Date: Thu, 19 Dec 2024 14:28:56 -0500 Subject: [PATCH] updating the location of the DefaultCipherFormCOnfigService --- apps/web/src/app/shared/loose-components.module.ts | 2 -- apps/web/src/app/tools/reports/reports.module.ts | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/shared/loose-components.module.ts b/apps/web/src/app/shared/loose-components.module.ts index 2d3e971fffa..3176ac81c1a 100644 --- a/apps/web/src/app/shared/loose-components.module.ts +++ b/apps/web/src/app/shared/loose-components.module.ts @@ -6,7 +6,6 @@ import { VaultTimeoutInputComponent, } from "@bitwarden/auth/angular"; import { LayoutComponent, NavigationModule } from "@bitwarden/components"; -import { DefaultCipherFormConfigService } from "@bitwarden/vault"; import { OrganizationLayoutComponent } from "../admin-console/organizations/layouts/organization-layout.component"; import { EventsComponent as OrgEventsComponent } from "../admin-console/organizations/manage/events.component"; @@ -245,6 +244,5 @@ import { SharedModule } from "./shared.module"; HeaderModule, DangerZoneComponent, ], - providers: [DefaultCipherFormConfigService], }) export class LooseComponentsModule {} diff --git a/apps/web/src/app/tools/reports/reports.module.ts b/apps/web/src/app/tools/reports/reports.module.ts index 10849d56d9c..27ed65828bf 100644 --- a/apps/web/src/app/tools/reports/reports.module.ts +++ b/apps/web/src/app/tools/reports/reports.module.ts @@ -1,6 +1,8 @@ import { CommonModule } from "@angular/common"; import { NgModule } from "@angular/core"; +import { DefaultCipherFormConfigService } from "@bitwarden/vault"; + import { HeaderModule } from "../../layouts/header/header.module"; import { SharedModule } from "../../shared"; import { OrganizationBadgeModule } from "../../vault/individual-vault/organization-badge/organization-badge.module"; @@ -37,5 +39,6 @@ import { ReportsSharedModule } from "./shared"; UnsecuredWebsitesReportComponent, WeakPasswordsReportComponent, ], + providers: [DefaultCipherFormConfigService], }) export class ReportsModule {}