diff --git a/apps/web/src/app/auth/settings/security/security-keys.component.ts b/apps/web/src/app/auth/settings/security/security-keys.component.ts index c77109936ee..9d16d4380eb 100644 --- a/apps/web/src/app/auth/settings/security/security-keys.component.ts +++ b/apps/web/src/app/auth/settings/security/security-keys.component.ts @@ -8,10 +8,10 @@ import { AccountService } from "@bitwarden/common/auth/abstractions/account.serv import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction"; import { DialogService } from "@bitwarden/components"; +import { ChangeKdfModule } from "../../../key-management/change-kdf/change-kdf.module"; import { SharedModule } from "../../../shared"; import { ApiKeyComponent } from "./api-key.component"; -import { ChangeKdfModule } from "./change-kdf/change-kdf.module"; @Component({ templateUrl: "security-keys.component.html", diff --git a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf-confirmation.component.html b/apps/web/src/app/key-management/change-kdf/change-kdf-confirmation.component.html similarity index 100% rename from apps/web/src/app/auth/settings/security/change-kdf/change-kdf-confirmation.component.html rename to apps/web/src/app/key-management/change-kdf/change-kdf-confirmation.component.html diff --git a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf-confirmation.component.ts b/apps/web/src/app/key-management/change-kdf/change-kdf-confirmation.component.ts similarity index 100% rename from apps/web/src/app/auth/settings/security/change-kdf/change-kdf-confirmation.component.ts rename to apps/web/src/app/key-management/change-kdf/change-kdf-confirmation.component.ts diff --git a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf.component.html b/apps/web/src/app/key-management/change-kdf/change-kdf.component.html similarity index 100% rename from apps/web/src/app/auth/settings/security/change-kdf/change-kdf.component.html rename to apps/web/src/app/key-management/change-kdf/change-kdf.component.html diff --git a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf.component.ts b/apps/web/src/app/key-management/change-kdf/change-kdf.component.ts similarity index 100% rename from apps/web/src/app/auth/settings/security/change-kdf/change-kdf.component.ts rename to apps/web/src/app/key-management/change-kdf/change-kdf.component.ts diff --git a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf.module.ts b/apps/web/src/app/key-management/change-kdf/change-kdf.module.ts similarity index 90% rename from apps/web/src/app/auth/settings/security/change-kdf/change-kdf.module.ts rename to apps/web/src/app/key-management/change-kdf/change-kdf.module.ts index 3ef1fef03f8..342ad43e368 100644 --- a/apps/web/src/app/auth/settings/security/change-kdf/change-kdf.module.ts +++ b/apps/web/src/app/key-management/change-kdf/change-kdf.module.ts @@ -1,7 +1,7 @@ import { CommonModule } from "@angular/common"; import { NgModule } from "@angular/core"; -import { SharedModule } from "../../../../shared"; +import { SharedModule } from "../../shared"; import { ChangeKdfConfirmationComponent } from "./change-kdf-confirmation.component"; import { ChangeKdfComponent } from "./change-kdf.component";