From 9340758c392ff40dfbf5953e34184728ba0df2ee Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Mon, 11 Aug 2025 09:26:46 +0200 Subject: [PATCH] Fix allowedMaxRequests and allowedMaxCost values not showing in the settings UI --- webview-ui/src/components/settings/SettingsView.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webview-ui/src/components/settings/SettingsView.tsx b/webview-ui/src/components/settings/SettingsView.tsx index 630b59485d..987d245105 100644 --- a/webview-ui/src/components/settings/SettingsView.tsx +++ b/webview-ui/src/components/settings/SettingsView.tsx @@ -629,6 +629,8 @@ const SettingsView = forwardRef(({ onDone, t alwaysAllowUpdateTodoList={alwaysAllowUpdateTodoList} followupAutoApproveTimeoutMs={followupAutoApproveTimeoutMs} allowedCommands={allowedCommands} + allowedMaxRequests={allowedMaxRequests ?? undefined} + allowedMaxCost={allowedMaxCost ?? undefined} deniedCommands={deniedCommands} setCachedStateField={setCachedStateField} />