diff --git a/frontend/src/components/dashboard/StartSessionInput.tsx b/frontend/src/components/dashboard/StartSessionInput.tsx index cbce227f..dbb04622 100644 --- a/frontend/src/components/dashboard/StartSessionInput.tsx +++ b/frontend/src/components/dashboard/StartSessionInput.tsx @@ -44,7 +44,7 @@ export function StartSessionInput() { if (logContent.trim()) { state.logs = logContent.trim() } - navigate('/pilot', { state }) + navigate('/assistant', { state }) } const handleKeyDown = (e: React.KeyboardEvent) => { @@ -55,7 +55,7 @@ export function StartSessionInput() { } const handleSuggestionClick = (suggestion: string) => { - navigate('/pilot', { state: { prefill: suggestion } }) + navigate('/assistant', { state: { prefill: suggestion } }) } // ── File handling ────────────────────────────── diff --git a/frontend/src/components/layout/CommandPalette.tsx b/frontend/src/components/layout/CommandPalette.tsx index fd768cb2..a83f8e28 100644 --- a/frontend/src/components/layout/CommandPalette.tsx +++ b/frontend/src/components/layout/CommandPalette.tsx @@ -177,7 +177,7 @@ export function CommandPalette({ open, onClose }: CommandPaletteProps) { group: 'flowpilot', title: 'Troubleshoot with FlowPilot', subtitle: trimmed, - path: '/pilot', + path: '/assistant', icon: 'sparkles', }