diff --git a/apps/web/src/app/vault/components/collection-dialog/collection-dialog.component.ts b/apps/web/src/app/vault/components/collection-dialog/collection-dialog.component.ts index 5c220672ea..92022fc200 100644 --- a/apps/web/src/app/vault/components/collection-dialog/collection-dialog.component.ts +++ b/apps/web/src/app/vault/components/collection-dialog/collection-dialog.component.ts @@ -204,14 +204,12 @@ export class CollectionDialogComponent implements OnInit, OnDestroy { const currentOrgUserId = users.data.find((u) => u.userId === this.organization?.userId) ?.id; const initialSelection: AccessItemValue[] = - currentOrgUserId !== undefined + currentOrgUserId !== undefined && flexibleCollections ? [ { id: currentOrgUserId, type: AccessItemType.Member, - permission: flexibleCollections - ? CollectionPermission.Manage - : CollectionPermission.Edit, + permission: CollectionPermission.Manage, }, ] : [];