diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/components/user-group-collection-header.element.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/components/user-group-collection-header.element.ts
deleted file mode 100644
index a0101aa3a4..0000000000
--- a/src/Umbraco.Web.UI.Client/src/packages/user/user-group/collection/components/user-group-collection-header.element.ts
+++ /dev/null
@@ -1,65 +0,0 @@
-import { UmbUserGroupCollectionContext } from '../user-group-collection.context.js';
-import { UUIInputEvent } from '@umbraco-cms/backoffice/external/uui';
-import { css, html, customElement } from '@umbraco-cms/backoffice/external/lit';
-import { UMB_COLLECTION_CONTEXT } from '@umbraco-cms/backoffice/collection';
-import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
-
-@customElement('umb-user-group-collection-header')
-export class UmbUserGroupCollectionHeaderElement extends UmbLitElement {
- #collectionContext?: UmbUserGroupCollectionContext;
-
- constructor() {
- super();
-
- this.consumeContext(UMB_COLLECTION_CONTEXT, (instance) => {
- this.#collectionContext = instance as UmbUserGroupCollectionContext;
- });
- }
-
- #onCreate() {
- history.pushState(null, '', 'section/user-management/view/user-groups/user-group/create/');
- }
-
- #onSearch(event: UUIInputEvent) {
- //TODO How do we handle search when theres no endpoint (we have to do it locally)
- }
-
- render() {
- return html`
-
-
- `;
- }
- static styles = [
- css`
- :host {
- height: 100%;
- width: 100%;
- display: flex;
- justify-content: space-between;
- white-space: nowrap;
- gap: var(--uui-size-space-5);
- align-items: center;
- }
-
- #input-search {
- width: 100%;
- }
- `,
- ];
-}
-
-export default UmbUserGroupCollectionHeaderElement;
-
-declare global {
- interface HTMLElementTagNameMap {
- 'umb-user-group-collection-header': UmbUserGroupCollectionHeaderElement;
- }
-}