Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
madsrasmussen committed Feb 7, 2025
1 parent 726d07d commit efe75be
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import { UmbFormControlMixin } from '@umbraco-cms/backoffice/validation';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { UmbSorterController } from '@umbraco-cms/backoffice/sorter';
import { UMB_MEMBER_TYPE_ENTITY_TYPE } from '@umbraco-cms/backoffice/member-type';
import { UMB_CURRENT_USER_CONTEXT } from '@umbraco-cms/backoffice/current-user';

Check failure on line 10 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

'UMB_CURRENT_USER_CONTEXT' is defined but never used
import { createExtensionApiByAlias } from '@umbraco-cms/backoffice/extension-registry';

Check failure on line 11 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

'createExtensionApiByAlias' is defined but never used
import { UMB_SECTION_USER_PERMISSION_CONDITION_ALIAS } from '@umbraco-cms/backoffice/section';

Check failure on line 12 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

'UMB_SECTION_USER_PERMISSION_CONDITION_ALIAS' is defined but never used
import { UMB_MEMBER_MANAGEMENT_SECTION_ALIAS } from 'src/packages/members/section/constants.js';

Check failure on line 13 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

node_modules imports should be proxied through `@umbraco-cms/backoffice/external`. Please create it if it does not exist

Check failure on line 13 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

Prefer using import aliases or relative imports instead of absolute imports. Example: `import { MyComponent } from "src/components/MyComponent";` should be `import { MyComponent } from "@components/MyComponent";`

Check failure on line 13 in src/Umbraco.Web.UI.Client/src/packages/members/member/components/input-member/input-member.element.ts

View workflow job for this annotation

GitHub Actions / build

'UMB_MEMBER_MANAGEMENT_SECTION_ALIAS' is defined but never used

@customElement('umb-input-member')
export class UmbInputMemberElement extends UmbFormControlMixin<string | undefined, typeof UmbLitElement>(
Expand Down Expand Up @@ -117,9 +121,6 @@ export class UmbInputMemberElement extends UmbFormControlMixin<string | undefine
}
#readonly = false;

@state()
private _editMemberPath = '';

@state()
private _items?: Array<UmbMemberItemModel>;

Expand Down

0 comments on commit efe75be

Please sign in to comment.