From 7eaeb660dd991289c7f069f1e2fcba5be830fe1a Mon Sep 17 00:00:00 2001 From: chihlasm Date: Mon, 23 Mar 2026 06:36:51 +0000 Subject: [PATCH] fix: dashboard and omnibar route to /assistant chat, not /pilot guided flow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns with copilot-first GTM direction — the dashboard chat input and CommandPalette "Troubleshoot with FlowPilot" now launch the conversational AI chat (/assistant), not the structured diagnostic flow (/pilot). Guided flows remain accessible from the sidebar "Flows" section. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/dashboard/StartSessionInput.tsx | 4 ++-- frontend/src/components/layout/CommandPalette.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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', }