1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-30 16:23:53 +00:00

Fix build

This commit is contained in:
Bernd Schoolmann
2025-12-12 17:19:49 +01:00
parent 2efe985e13
commit fa2687fa23
2 changed files with 2 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ export abstract class BaseBulkConfirmComponent implements OnInit {
const encryptedKey = await this.encryptService.encapsulateKeyUnsigned(key, publicKey);
userIdsWithKeys.push({
id: user.id,
key: encryptedKey.encryptedString,
key: encryptedKey,
});
}

View File

@@ -34,10 +34,7 @@ export class WebauthnLoginCredentialResponse extends BaseResponse {
throw new Error("Invalid encrypted public key");
}
return new RotateableKeySet(
new EncString(this.encryptedUserKey),
new EncString(this.encryptedPublicKey),
);
return new RotateableKeySet(this.encryptedUserKey, new EncString(this.encryptedPublicKey));
}
hasPrfKeyset(): boolean {