diff --git a/ui/src/components/LayoutShell.tsx b/ui/src/components/LayoutShell.tsx index e0a2ed4f..6430d8f7 100644 --- a/ui/src/components/LayoutShell.tsx +++ b/ui/src/components/LayoutShell.tsx @@ -167,7 +167,7 @@ function collectStarredItems(apps: SidebarApp[], starredIds: Set): Starr items.push({ starKey: `app:${app.id}`, label: app.name, icon: makeStatusDot(app.health), path: `/apps/${app.id}` }); } for (const route of app.routes) { - const key = `app:${app.id}/${route.id}`; + const key = `route:${app.id}/${route.id}`; if (starredIds.has(key)) { items.push({ starKey: key, label: route.name, path: `/apps/${app.id}/${route.id}`, parentApp: app.name }); }