FIX - categorize merged phone apps

This commit is contained in:
Leon.Schmidt
2026-08-06 22:55:17 +02:00
parent bf4f590135
commit 9ab79b9658
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ describe('app registry', () => {
PHONE_APPS.filter((app) => app.category === 'social').map(
(app) => app.id,
),
).toEqual(['local-pages', 'phone', 'mail'])
).toEqual(['local-pages', 'phone', 'darkchat', 'mail'])
expect(
PHONE_APPS.filter((app) => app.dockOrder !== null)
.sort((a, b) => (a.dockOrder ?? 0) - (b.dockOrder ?? 0))
+2
View File
@@ -112,6 +112,7 @@ export const PHONE_APPS: PhoneAppDefinition[] = [
route: '/apps/messages',
},
{
category: 'social',
component: markRaw(
defineAsyncComponent(() => import('@/views/apps/DarkChatApp.vue')),
),
@@ -125,6 +126,7 @@ export const PHONE_APPS: PhoneAppDefinition[] = [
route: '/apps/darkchat',
},
{
category: 'utilities',
component: markRaw(
defineAsyncComponent(() => import('@/views/apps/MapApp.vue')),
),