From de2cf6ba56dc3edafe2ffb55a4f65a13f7899ec4 Mon Sep 17 00:00:00 2001 From: dimakis Date: Sat, 4 Jul 2026 15:58:45 +0100 Subject: [PATCH 1/2] fix(task-board): add spawn kill switch to mobile task board page The toggle was only in TaskBoardSection (desktop collapsible view). The mobile full-page TaskBoard at pages/TaskBoard.tsx was missing it. Co-Authored-By: Claude Opus 4.6 --- frontend/src/pages/TaskBoard.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/pages/TaskBoard.tsx b/frontend/src/pages/TaskBoard.tsx index 140e68c6..40b62db5 100644 --- a/frontend/src/pages/TaskBoard.tsx +++ b/frontend/src/pages/TaskBoard.tsx @@ -74,6 +74,7 @@ export function TaskBoard() { pauseLoop, resumeLoop, stopLoop, + setSpawnEnabled, approveTask, rejectTask, approveSpec, @@ -104,10 +105,18 @@ export function TaskBoard() { const goals = tasks.filter((t) => !t.parentId); const t1Count = countT1Recursive(tasks); + const { spawnEnabled } = loopStatus; return (
0 ? t1Count : tasks.length || undefined}> +