mirror of
https://github.com/bitwarden/browser
synced 2026-01-30 16:23:53 +00:00
Fix build
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user