From 374131b7b5f03b8f536fbbc76ce78e9396d54f63 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:06:27 +0200 Subject: [PATCH] fix: use absolute path for /deployments redirect The relative `to="apps"` didn't resolve correctly. All other legacy redirects use absolute paths (`to="/apps"`, `to="/runtime"`). Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/router.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/router.tsx b/ui/src/router.tsx index 21dce608..cd78604e 100644 --- a/ui/src/router.tsx +++ b/ui/src/router.tsx @@ -65,7 +65,7 @@ export const router = createBrowserRouter([ { path: 'logs/:appId/:routeId', element: }, { path: 'config', element: }, { path: 'config/:appId', element: }, - { path: 'deployments', element: }, + { path: 'deployments', element: }, // Apps tab (OPERATOR+ via UI guard, shows all or single app) { path: 'apps', element: },