diff --git a/.changeset/fn-6368-steering-running-session.md b/.changeset/fn-6368-steering-running-session.md new file mode 100644 index 0000000000..c021e71a07 --- /dev/null +++ b/.changeset/fn-6368-steering-running-session.md @@ -0,0 +1,5 @@ +--- +"@runfusion/fusion": patch +--- + +Steering messages sent from task chat now reach active step-session and workflow runs, including parallel step sessions, and the misleading inactive-session "next session" composer copy was removed. diff --git a/packages/dashboard/app/components/TaskChatTab.tsx b/packages/dashboard/app/components/TaskChatTab.tsx index 5f247fd791..68d6d7f84d 100644 --- a/packages/dashboard/app/components/TaskChatTab.tsx +++ b/packages/dashboard/app/components/TaskChatTab.tsx @@ -424,7 +424,7 @@ export function TaskChatTab({ task, projectId, active, addToast, sessionLive, on const activeSession = isActiveAgentSession(task, { sessionLive }); const sessionHint = activeSession ? "Message the active agent session. Guidance is delivered to the running session in real time." - : "Message saved here will be picked up by the next session when work resumes."; + : null; const canSend = draft.trim().length > 0 && !sending; const resizeComposer = useCallback(() => { @@ -623,15 +623,17 @@ export function TaskChatTab({ task, projectId, active, addToast, sessionLive, on