From 8edb4ab4d15dcf565c38b3c0278fab738f7d0bbe Mon Sep 17 00:00:00 2001 From: Dorian Date: Wed, 1 Apr 2026 19:11:32 +0100 Subject: [PATCH] fix: redirect /kiosk to /dashboard instead of app grid The old Kiosk.vue app grid launcher was never intended as the kiosk display. Redirect /kiosk to /dashboard so the kiosk shows the actual Archipelago interface. Co-Authored-By: Claude Opus 4.6 (1M context) --- neode-ui/src/router/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/neode-ui/src/router/index.ts b/neode-ui/src/router/index.ts index d04b1c8c..0f327189 100644 --- a/neode-ui/src/router/index.ts +++ b/neode-ui/src/router/index.ts @@ -86,8 +86,7 @@ const router = createRouter({ { path: '/kiosk', name: 'kiosk', - component: () => import('../views/Kiosk.vue'), - meta: { public: true }, + redirect: '/dashboard', }, { path: '/dashboard',