From 27ca08d98a6ec8a5e90362feded5b2500e3c0060 Mon Sep 17 00:00:00 2001 From: Shirone Date: Wed, 14 Jan 2026 17:02:52 +0100 Subject: [PATCH] fix: Set workMode to custom for PR and conflict flows --- apps/ui/src/components/views/board-view.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ui/src/components/views/board-view.tsx b/apps/ui/src/components/views/board-view.tsx index f8ed10dd..632de914 100644 --- a/apps/ui/src/components/views/board-view.tsx +++ b/apps/ui/src/components/views/board-view.tsx @@ -701,6 +701,7 @@ export function BoardView() { model: 'opus' as const, thinkingLevel: 'none' as const, branchName: worktree.branch, + workMode: 'custom' as const, // Use the worktree's branch priority: 1, // High priority for PR feedback planningMode: 'skip' as const, requirePlanApproval: false, @@ -743,6 +744,7 @@ export function BoardView() { model: 'opus' as const, thinkingLevel: 'none' as const, branchName: worktree.branch, + workMode: 'custom' as const, // Use the worktree's branch priority: 1, // High priority for conflict resolution planningMode: 'skip' as const, requirePlanApproval: false,