We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e3c88f commit 038ddbdCopy full SHA for 038ddbd
webview-ui/src/components/settings/ApiOptions.tsx
@@ -921,10 +921,14 @@ const ApiOptions = ({
921
maxValue={2}
922
/>
923
)}
924
- <RateLimitAfterControl
925
- rateLimitAfterEnabled={apiConfiguration.rateLimitAfter}
926
- onChange={(field, value) => setApiConfigurationField(field, value)}
927
- />
+ {
+ // kilocode_change start
+ <RateLimitAfterControl
+ rateLimitAfterEnabled={apiConfiguration.rateLimitAfter}
928
+ onChange={(field, value) => setApiConfigurationField(field, value)}
929
+ />
930
+ // kilocode_change end
931
+ }
932
<RateLimitSecondsControl
933
value={apiConfiguration.rateLimitSeconds || 0}
934
onChange={(value) => setApiConfigurationField("rateLimitSeconds", value)}
0 commit comments