1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

chore: update sdk to main.105 (#13472)

* chore: update sdk version

* fix: sdk breaking changes
This commit is contained in:
Andreas Coroiu
2025-02-19 15:46:43 +01:00
committed by GitHub
parent ae38e40859
commit 9c102f056c
4 changed files with 11 additions and 11 deletions

View File

@@ -104,9 +104,9 @@ export class SshKeySectionComponent implements OnInit {
await firstValueFrom(this.sdkService.client$);
const sshKey = generate_ssh_key("Ed25519");
this.sshKeyForm.setValue({
privateKey: sshKey.private_key,
publicKey: sshKey.public_key,
keyFingerprint: sshKey.key_fingerprint,
privateKey: sshKey.privateKey,
publicKey: sshKey.publicKey,
keyFingerprint: sshKey.fingerprint,
});
}
}