From 977b8d06b883e2411570eb3200cf0dd4ad5c74a6 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 17 Jul 2026 03:07:30 +0100 Subject: [PATCH] fix(ui): Connect to Mesh routes to /dashboard/mesh, not the 404 /mesh Co-Authored-By: Claude Fable 5 --- neode-ui/src/components/mesh/MeshDeviceSetupModal.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neode-ui/src/components/mesh/MeshDeviceSetupModal.vue b/neode-ui/src/components/mesh/MeshDeviceSetupModal.vue index f21790f7..fdfbabfd 100644 --- a/neode-ui/src/components/mesh/MeshDeviceSetupModal.vue +++ b/neode-ui/src/components/mesh/MeshDeviceSetupModal.vue @@ -216,7 +216,8 @@ async function connect() { device_kind: form.value.deviceKind, }) mesh.dismissDetectedDevice(path) - void router.push('/mesh') + // The Mesh view lives under the dashboard shell — a bare /mesh 404s. + void router.push('/dashboard/mesh') } catch (e) { error.value = e instanceof Error ? e.message : 'Failed to configure the mesh radio' } finally {