@@ -175,6 +175,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
175175 customSupportPrompts,
176176 profileThresholds,
177177 alwaysAllowFollowupQuestions,
178+ alwaysAllowUpdateTodoList,
178179 followupAutoApproveTimeoutMs,
179180 } = cachedState
180181
@@ -314,6 +315,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
314315 vscode . postMessage ( { type : "alwaysAllowModeSwitch" , bool : alwaysAllowModeSwitch } )
315316 vscode . postMessage ( { type : "alwaysAllowSubtasks" , bool : alwaysAllowSubtasks } )
316317 vscode . postMessage ( { type : "alwaysAllowFollowupQuestions" , bool : alwaysAllowFollowupQuestions } )
318+ vscode . postMessage ( { type : "alwaysAllowUpdateTodoList" , bool : alwaysAllowUpdateTodoList } )
317319 vscode . postMessage ( { type : "followupAutoApproveTimeoutMs" , value : followupAutoApproveTimeoutMs } )
318320 vscode . postMessage ( { type : "condensingApiConfigId" , text : condensingApiConfigId || "" } )
319321 vscode . postMessage ( { type : "updateCondensingPrompt" , text : customCondensingPrompt || "" } )
@@ -606,6 +608,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
606608 alwaysAllowSubtasks = { alwaysAllowSubtasks }
607609 alwaysAllowExecute = { alwaysAllowExecute }
608610 alwaysAllowFollowupQuestions = { alwaysAllowFollowupQuestions }
611+ alwaysAllowUpdateTodoList = { alwaysAllowUpdateTodoList }
609612 followupAutoApproveTimeoutMs = { followupAutoApproveTimeoutMs }
610613 allowedCommands = { allowedCommands }
611614 setCachedStateField = { setCachedStateField }
0 commit comments