File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -1365,12 +1365,6 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
13651365 await this . updateGlobalState ( "requestDelaySeconds" , message . value ?? 5 )
13661366 await this . postStateToWebview ( )
13671367 break
1368- case "rateLimitSeconds" :
1369- // Rate limit seconds is now part of the API configuration
1370- // and will be saved when the API configuration is saved
1371- await this . updateGlobalState ( "rateLimitSeconds" , message . value ?? 0 )
1372- await this . postStateToWebview ( )
1373- break
13741368 case "writeDelayMs" :
13751369 await this . updateGlobalState ( "writeDelayMs" , message . value )
13761370 await this . postStateToWebview ( )
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode
129129 enableMcpServerCreation : true ,
130130 alwaysApproveResubmit : false ,
131131 requestDelaySeconds : 5 ,
132- rateLimitSeconds : 0 , // Minimum time between successive requests (0 = disabled)
132+ // rateLimitSeconds is now part of apiConfiguration
133133 currentApiConfigName : "default" ,
134134 listApiConfigMeta : [ ] ,
135135 mode : defaultModeSlug ,
You can’t perform that action at this time.
0 commit comments