From 91bc3f1445642fa32324b459306526847296274a Mon Sep 17 00:00:00 2001 From: robbond Date: Tue, 4 Aug 2026 17:51:12 +0100 Subject: [PATCH] reorder: move Your Response next to Current Investigation The response form now appears immediately after the active question so the user can read and answer without scrolling. Everything else becomes supporting context beneath the interaction area. --- components/reasoning-workspace.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/reasoning-workspace.jsx b/components/reasoning-workspace.jsx index c8aae00..7a12819 100644 --- a/components/reasoning-workspace.jsx +++ b/components/reasoning-workspace.jsx @@ -479,13 +479,7 @@ export default function ReasoningWorkspace({ {/* ── 2. Post-update acknowledgement ─────────────── */} {updateStatus === "success" && canAnswer && } - {/* ── 3. Current understanding ───────────────────── */} - {canAnswer && graph && } - - {/* ── 4. Investigation history ───────────────────── */} - - - {/* ── 5. Response form (immediately after Current investigation) ─ */} + {/* ── 3. Response form ───────────────────────────── */} {canAnswer && (
@@ -517,6 +511,12 @@ export default function ReasoningWorkspace({ )} + {/* ── 4. Current understanding ───────────────────── */} + {canAnswer && graph && } + + {/* ── 5. Investigation history ───────────────────── */} + + {/* ── 6. Original situation (collapsed by default) ─ */}