FIX - complete phone app categories

This commit is contained in:
smx.pusha
2026-08-08 17:56:04 +02:00
parent 2c0e8bb246
commit 2ed4c78f72
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')),
),