diff --git a/CHANGELOG.md b/CHANGELOG.md
index e651f1e28..5bafc0a01 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,6 @@
## 12.x.x (unreleased)
### Improvements
-- Add groups UI back @ThatOneCalculator
### Bugfixes
-
diff --git a/packages/client/src/navbar.ts b/packages/client/src/navbar.ts
index 029ef1665..03e00b1c1 100644
--- a/packages/client/src/navbar.ts
+++ b/packages/client/src/navbar.ts
@@ -86,11 +86,6 @@ export const navbarItemDef = reactive({
icon: 'fas fa-icons',
to: '/gallery',
},
- groups: {
- title: 'groups',
- icon: 'fas fa-users',
- to: '/my/groups',
- },
clips: {
title: 'clip',
icon: 'fas fa-paperclip',
diff --git a/packages/client/src/pages/my-groups/groups.vue b/packages/client/src/pages/my-groups/groups.vue
deleted file mode 100644
index 5e5ba034d..000000000
--- a/packages/client/src/pages/my-groups/groups.vue
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/client/src/pages/my-groups/index.vue b/packages/client/src/pages/my-groups/index.vue
deleted file mode 100644
index 84d1fa5ff..000000000
--- a/packages/client/src/pages/my-groups/index.vue
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
- {{ i18n.ts.createGroup }}
-
-
-
{{ group.name }}
-
-
-
-
-
-
-
-
{{ group.name }}
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts
index 0bf3d71d7..111b15e0a 100644
--- a/packages/client/src/router.ts
+++ b/packages/client/src/router.ts
@@ -425,14 +425,6 @@ export const routes = [{
path: '/my/clips',
component: page(() => import('./pages/my-clips/index.vue')),
loginRequired: true,
-}, {
- path: '/my/groups',
- component: page(() => import('./pages/my-groups/index.vue')),
- loginRequired: true,
-}, {
- path: '/my/groups/:groupId',
- component: page(() => import('./pages/my-groups/group.vue')),
- loginRequired: true,
}, {
path: '/my/antennas/create',
component: page(() => import('./pages/my-antennas/create.vue')),