1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

revert spaces

This commit is contained in:
Anders Åberg
2025-02-20 00:37:06 +01:00
parent bd9ffb57fc
commit da79e89b03

View File

@@ -132,7 +132,6 @@ export class Fido2AuthenticatorService<ParentWindowReference>
userVerification: params.requireUserVerification,
rpId: params.rpEntity.id,
});
const cipherId = response.cipherId;
userVerified = response.userVerified;
@@ -147,7 +146,6 @@ export class Fido2AuthenticatorService<ParentWindowReference>
keyPair = await createKeyPair();
pubKeyDer = await crypto.subtle.exportKey("spki", keyPair.publicKey);
const encrypted = await this.cipherService.get(cipherId);
const activeUserId = await firstValueFrom(
this.accountService.activeAccount$.pipe(map((a) => a?.id)),
);
@@ -182,6 +180,7 @@ export class Fido2AuthenticatorService<ParentWindowReference>
);
throw new Fido2AuthenticatorError(Fido2AuthenticatorErrorCode.Unknown);
}
const authData = await generateAuthData({
rpId: params.rpEntity.id,
credentialId: parseCredentialId(credentialId),