diff --git a/components/reasoning-workspace.jsx b/components/reasoning-workspace.jsx index db810c3..5e1d4c7 100644 --- a/components/reasoning-workspace.jsx +++ b/components/reasoning-workspace.jsx @@ -47,13 +47,6 @@ const UPDATE_MESSAGES = [ { min: 45, text: "Choosing the next question" }, ]; -const REVISION_MESSAGES = [ - { min: 0, text: "Reading what changed" }, - { min: 10, text: "Rebuilding the investigation" }, - { min: 25, text: "Checking what this affects" }, - { min: 45, text: "Choosing the next justified question" }, -]; - function useLoadingStatus(messages, isLoading) { const [elapsed, setElapsed] = useState(0); const startRef = useRef(null); @@ -83,59 +76,6 @@ function useLoadingStatus(messages, isLoading) { return { elapsed, currentMessage }; } -// ── Revision warning banner ───────────────────────────────── -function RevisionWarningCard() { - return ( -
- Changing this answer may alter the questions and conclusions that followed it. -
- ); -} - -// ── Revision inline editor ──────────────────────────────────── -function RevisionEditor({ turn, onSave, onCancel }) { - const [draft, setDraft] = useState(turn.answer); - - return ( -
- -

{turn.question}

-