1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

fix type issue

This commit is contained in:
jaasen-livefront
2025-10-30 11:45:36 -07:00
parent c3ca6c8e71
commit 6dc2a777a7

View File

@@ -1,7 +1,7 @@
// This import has been flagged as unallowed for this class. It may be involved in a circular dependency loop.
// eslint-disable-next-line no-restricted-imports
import { CollectionView } from "@bitwarden/admin-console/common";
import { OrganizationId } from "@bitwarden/common/types/guid";
import { CollectionId, OrganizationId } from "@bitwarden/common/types/guid";
import { FieldType, SecureNoteType } from "@bitwarden/common/vault/enums";
import { FolderView } from "@bitwarden/common/vault/models/view/folder.view";
import { CipherType } from "@bitwarden/sdk-internal";
@@ -495,7 +495,7 @@ describe("Password Depot 17 Xml Importer", () => {
const collection = new CollectionView({
name: "tempDB",
organizationId: importer.organizationId,
id: "",
id: "" as CollectionId,
});
const actual = [collection];