From cef8f46bd6d2304ed7741f18076ad229c495e18e Mon Sep 17 00:00:00 2001 From: robbond Date: Thu, 20 Aug 2026 09:33:06 +0100 Subject: [PATCH] test(ui): restore entry lifecycle and notebook rendering --- components/scenario-form.jsx | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/components/scenario-form.jsx b/components/scenario-form.jsx index d2f3864..9ff4b64 100644 --- a/components/scenario-form.jsx +++ b/components/scenario-form.jsx @@ -225,7 +225,7 @@ export default function ScenarioForm() { /* ── RTO.25A — passive late-result branch switcher (experimental) ── */ - const [activeBranchId, setActiveBranchId] = useState("branch-b"); + const [activeBranchId, setActiveBranchId] = useState("branch-a"); // Pre-seed Competitor development with a late result for RTO.27A testing const [branchNewResults, setBranchNewResults] = useState({ "branch-a": true }); @@ -457,7 +457,7 @@ export default function ScenarioForm() { return (
{/* ── RTO.26B — standalone branch-scoped experimental view (shown when experiment is active) ───── */} - {showExperimentView && status !== "loading" && ( + {showExperimentView && status !== "loading" && (result?.situationGraph || status === "success") && ( <>
@@ -518,18 +518,6 @@ export default function ScenarioForm() { />
- {/* ── RTO.27B — simulated late update for paused branch (experimental dev control) ─ */} -
- -
)}