mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
allow any type to handle watsonx
This commit is contained in:
parent
55743512e0
commit
4d9fbb014b
2 changed files with 2 additions and 2 deletions
|
|
@ -2213,7 +2213,7 @@ export class ClineProvider
|
|||
await ExtensionBridgeService.handleRemoteControlState(
|
||||
userInfo,
|
||||
enabled,
|
||||
{ ...bridgeConfig, provider: this, sessionId: vscode.env.sessionId },
|
||||
{ ...bridgeConfig, provider: this as any, sessionId: vscode.env.sessionId },
|
||||
(message: string) => this.log(message),
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ export async function activate(context: vscode.ExtensionContext) {
|
|||
ExtensionBridgeService.handleRemoteControlState(
|
||||
userInfo,
|
||||
contextProxy.getValue("remoteControlEnabled"),
|
||||
{ ...bridgeConfig, provider, sessionId: vscode.env.sessionId },
|
||||
{ ...bridgeConfig, provider: provider as any, sessionId: vscode.env.sessionId },
|
||||
(message: string) => outputChannel.appendLine(message),
|
||||
)
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue