1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

fix folder with id export

This commit is contained in:
jaasen-livefront
2025-11-07 14:53:21 -08:00
parent 705e2329f8
commit c878c77cd4

View File

@@ -7,6 +7,6 @@ export class FolderWithIdRequest extends FolderRequest {
constructor(folder: Folder) {
super(folder);
this.id = folder.id;
this.id = folder.id ?? "";
}
}