From 0624bc20e25e4a794b9265aec1dac193d5aa1870 Mon Sep 17 00:00:00 2001 From: robbond Date: Mon, 31 Aug 2026 18:29:06 +0100 Subject: [PATCH] fix(confidence-engine): gate focused completion during processing --- components/reasoning-workspace.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/reasoning-workspace.jsx b/components/reasoning-workspace.jsx index 1c95534..dc37be8 100644 --- a/components/reasoning-workspace.jsx +++ b/components/reasoning-workspace.jsx @@ -393,12 +393,13 @@ function FocusedQuestionBody({ // ── Persistent navigation controls (overlay-level, outside content grid) ── -function FocusedWorkspaceNavigation({ nodeId, doneForNow, isDoneForNowActive }) { - const canDoneForNow = Boolean(isDoneForNowActive); +function FocusedWorkspaceNavigation({ nodeId, doneForNow, isDoneForNowActive, isProcessing }) { + const canDoneForNow = Boolean(isDoneForNowActive) && !isProcessing; return (