From 87f91cc37820b00d1bfbdb3065a66ad4310dcaa9 Mon Sep 17 00:00:00 2001 From: "smx.pusha" <139338836+smxpusha@users.noreply.github.com> Date: Fri, 7 Aug 2026 16:29:42 +0200 Subject: [PATCH] FIX - complete app category registry --- frontend/src/config/apps.test.ts | 2 +- frontend/src/config/apps.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/config/apps.test.ts b/frontend/src/config/apps.test.ts index b72dd9c..c725db5 100644 --- a/frontend/src/config/apps.test.ts +++ b/frontend/src/config/apps.test.ts @@ -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)) diff --git a/frontend/src/config/apps.ts b/frontend/src/config/apps.ts index a93ae6a..fec59f1 100644 --- a/frontend/src/config/apps.ts +++ b/frontend/src/config/apps.ts @@ -156,6 +156,7 @@ export const PHONE_APPS: PhoneAppDefinition[] = [ route: '/apps/banking', }, { + category: 'social', component: markRaw( defineAsyncComponent(() => import('@/views/apps/MailApp.vue')), ),