From 24727e6c4f0585212cdb8dfe090f9f59eb2616b5 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Sat, 19 Jul 2025 10:03:32 +1000 Subject: [PATCH] Fix comment --- .../src/common/collections/models/collection-admin.view.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/admin-console/src/common/collections/models/collection-admin.view.ts b/libs/admin-console/src/common/collections/models/collection-admin.view.ts index 363eb7d8721..616e3d13cb3 100644 --- a/libs/admin-console/src/common/collections/models/collection-admin.view.ts +++ b/libs/admin-console/src/common/collections/models/collection-admin.view.ts @@ -5,9 +5,9 @@ import { CollectionAccessSelectionView } from "./collection-access-selection.vie import { CollectionAccessDetailsResponse } from "./collection.response"; import { CollectionView } from "./collection.view"; -// TODO: this is used to represent the pseudo "Unassigned" collection -// AND ALSO the user's personal vault - this should be separated out to different consts. -// The type union allows this to be glossed over for now. +// TODO: this is used to represent the pseudo "Unassigned" collection as well as +// the user's personal vault (pseudo organization). This should be separated out into different values. +// The intersection type allows this to be glossed over for now. export const Unassigned = "unassigned" as CollectionId & OrganizationId; export class CollectionAdminView extends CollectionView {