FIX - complete app category registry

This commit is contained in:
smx.pusha
2026-08-07 16:29:42 +02:00
parent dd6dd421a6
commit 87f91cc378
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ describe('app registry', () => {
PHONE_APPS.filter((app) => app.category === 'social').map(
(app) => app.id,
),
).toEqual(['local-pages', 'phone', 'darkchat', 'mail'])
).toEqual(['local-pages', 'phone', 'darkchat', 'banking', 'mail'])
expect(
PHONE_APPS.filter((app) => app.dockOrder !== null)
.sort((a, b) => (a.dockOrder ?? 0) - (b.dockOrder ?? 0))
+1
View File
@@ -156,6 +156,7 @@ export const PHONE_APPS: PhoneAppDefinition[] = [
route: '/apps/banking',
},
{
category: 'social',
component: markRaw(
defineAsyncComponent(() => import('@/views/apps/MailApp.vue')),
),