1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

pass null for empty folder ids

This commit is contained in:
jaasen-livefront
2025-12-01 16:44:11 -08:00
parent 2088d578b4
commit a2b825d7e3

View File

@@ -279,7 +279,7 @@ export abstract class BaseImporter {
const collection = new CollectionView({
name: f.name,
organizationId: this.organizationId,
id: f.id as CollectionId,
id: (f.id as CollectionId) ?? null,
});
return collection;
});