1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

move change-kdf into KM ownership (#16515)

This commit is contained in:
Maciej Zieniuk
2025-09-22 20:55:21 +02:00
committed by GitHub
parent ce84125473
commit f3c50e159f
6 changed files with 2 additions and 2 deletions

View File

@@ -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",

View File

@@ -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";