fix(ui): Connect to Mesh routes to /dashboard/mesh, not the 404 /mesh

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Dorian 2026-07-17 03:07:30 +01:00
parent f08f34ca10
commit 977b8d06b8

View File

@ -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 {