diff --git a/libs/common/src/models/export/cipher.export.ts b/libs/common/src/models/export/cipher.export.ts index 1114d99e7bd..21ad16530d8 100644 --- a/libs/common/src/models/export/cipher.export.ts +++ b/libs/common/src/models/export/cipher.export.ts @@ -168,7 +168,7 @@ export class CipherExport { this.name = safeGetString(o.name) ?? ""; this.notes = safeGetString(o.notes); if ("key" in o) { - this.key = o.key?.encryptedString ?? ""; + this.key = o.key?.encryptedString; } this.favorite = o.favorite;