mirror of
https://github.com/bitwarden/browser
synced 2026-02-22 04:14:04 +00:00
fix types
This commit is contained in:
@@ -36,8 +36,8 @@ export class SshKeyExport {
|
||||
return;
|
||||
}
|
||||
|
||||
this.privateKey = safeGetString(o.privateKey);
|
||||
this.publicKey = safeGetString(o.publicKey);
|
||||
this.keyFingerprint = safeGetString(o.keyFingerprint);
|
||||
this.privateKey = safeGetString(o.privateKey) ?? "";
|
||||
this.publicKey = safeGetString(o.publicKey) ?? "";
|
||||
this.keyFingerprint = safeGetString(o.keyFingerprint) ?? "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user