From 9f7d511a8e4375f5e9e7f42bf380a4e836438557 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 20 Nov 2023 17:03:25 +0100 Subject: [PATCH] remove arguments --- .../user-group/collection/user-group-collection.context.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/user-group-collection.context.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/user-group-collection.context.ts index b5e3da3f0c..cc3c2ac734 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/user-group-collection.context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/user-group-collection.context.ts @@ -1,5 +1,4 @@ import type { UmbUserGroupCollectionFilterModel } from '../types.js'; -import { UMB_USER_GROUP_COLLECTION_REPOSITORY_ALIAS } from './repository/manifests.js'; import { UmbCollectionContext } from '@umbraco-cms/backoffice/collection'; import type { UserGroupResponseModel } from '@umbraco-cms/backoffice/backend-api'; import type { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api'; @@ -9,6 +8,6 @@ export class UmbUserGroupCollectionContext extends UmbCollectionContext< UmbUserGroupCollectionFilterModel > { constructor(host: UmbControllerHostElement) { - super(host, 'user-group', UMB_USER_GROUP_COLLECTION_REPOSITORY_ALIAS); + super(host); } }