From 1f469fdadf95d4a5ff6017f9da79ca98df32093a Mon Sep 17 00:00:00 2001 From: robbond Date: Tue, 4 Aug 2026 18:58:42 +0100 Subject: [PATCH] fix: remove duplication of original situation --- components/reasoning-workspace.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/components/reasoning-workspace.jsx b/components/reasoning-workspace.jsx index 6b9145f..3241341 100644 --- a/components/reasoning-workspace.jsx +++ b/components/reasoning-workspace.jsx @@ -268,17 +268,19 @@ function InvestigationHistory({ turns }) { // ── Original situation (always-visible reference card) ──────── function OriginalSituation({ scenario, centralStatement }) { - if (!scenario) return null; + const text = scenario || centralStatement; + + if (!text) return null; return (

Original situation

- {centralStatement && ( -

{centralStatement}

- )} -

{scenario}

+ +

+ {text} +

); }