diff --git a/apps/cockpit/src/components/sidebar/navigation-groups.tsx b/apps/cockpit/src/components/sidebar/navigation-groups.tsx index bc6af8776..3095e8b57 100644 --- a/apps/cockpit/src/components/sidebar/navigation-groups.tsx +++ b/apps/cockpit/src/components/sidebar/navigation-groups.tsx @@ -8,11 +8,13 @@ import { toCockpitPath } from '../../lib/route-resolution'; const PRODUCT_LABELS: Record = { 'deep-agents': 'Deep Agents', 'langgraph': 'LangGraph', + 'render': 'Render', + 'chat': 'Chat', }; function stripProductPrefix(title: string): string { - const prefixes = ['Deep Agents ', 'LangGraph ']; + const prefixes = ['Deep Agents ', 'LangGraph ', 'Render ', 'Chat ']; for (const p of prefixes) { if (title.startsWith(p)) return title.slice(p.length); }