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) ─ */}
-
-
-
>
)}