From 8519b2fecafab2f443a377062c54a035b7face78 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 15 Jun 2026 20:27:02 +0200 Subject: [PATCH] Conditionally render WorkflowSelector when in manual mode --- src/App.jsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index ae29644..e061da3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1965,12 +1965,14 @@ async function createNewChat() { libraries={libraries} setChatLibraryForSession={setChatLibraryForSession} /> - setChatWorkflowForSession(activeSessionId, nextSelection)} - /> + {workflowSelectionMode === 'manual' && ( + setChatWorkflowForSession(activeSessionId, nextSelection)} + /> + )}