Skip to content

Commit ab8f5d6

Browse files
minor formatting
1 parent 96005f0 commit ab8f5d6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/shared/WebviewMessage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

webview-ui/src/components/mcp/McpView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)