File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
webview-ui/src/components/mcp Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
209209 const enabled = this . mcpHub ?. isMcpEnabled ( ) ?? true
210210 await this . postMessageToWebview ( {
211211 type : "mcpEnabled" ,
212- enabled
212+ enabled,
213213 } )
214214 }
215215 } ,
@@ -584,7 +584,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
584584 const enabled = this . mcpHub ?. isMcpEnabled ( ) ?? true
585585 await this . postMessageToWebview ( {
586586 type : "mcpEnabled" ,
587- enabled
587+ enabled,
588588 } )
589589 break
590590 }
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export interface WebviewMessage {
3434 | "openExtensionSettings"
3535 | "getMcpEnabled"
3636 | "toggleMcp"
37- // | "relaunchChromeDebugMode"
37+ // | "relaunchChromeDebugMode"
3838 text ?: string
3939 askResponse ?: ClineAskResponse
4040 apiConfiguration ?: ApiConfiguration
Original file line number Diff line number Diff line change @@ -194,7 +194,8 @@ const McpView = ({ onDone }: McpViewProps) => {
194194 fontSize : "12px" ,
195195 lineHeight : "1.4" ,
196196 } } >
197- MCP is currently disabled. Enable MCP to use MCP servers and tools. Enabling MCP will use additional tokens.
197+ MCP is currently disabled. Enable MCP to use MCP servers and tools. Enabling MCP will use
198+ additional tokens.
198199 </ div >
199200 ) }
200201 </ div >
You can’t perform that action at this time.
0 commit comments