From 4947ab12fd23017d477bf66d0c89ce2eb8fba1f0 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+frooodle@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:33:48 +0100 Subject: [PATCH] remove the 'What your assistant can do' tool-category badges from MCP section --- .../config/configSections/McpSection.tsx | 44 ------------------- 1 file changed, 44 deletions(-) diff --git a/frontend/editor/src/saas/components/shared/config/configSections/McpSection.tsx b/frontend/editor/src/saas/components/shared/config/configSections/McpSection.tsx index 8313fdd12..1dba03198 100644 --- a/frontend/editor/src/saas/components/shared/config/configSections/McpSection.tsx +++ b/frontend/editor/src/saas/components/shared/config/configSections/McpSection.tsx @@ -7,7 +7,6 @@ import { Group, Alert, Code, - Badge, Button, CopyButton, Tabs, @@ -110,26 +109,6 @@ export default function McpSection() { [mcpUrl], ); - const tools: { icon: string; key: string; fallback: string }[] = [ - { - icon: "sync-alt-rounded", - key: "config.mcp.tools.convert", - fallback: "Convert", - }, - { - icon: "description-rounded", - key: "config.mcp.tools.pages", - fallback: "Pages", - }, - { icon: "lock", key: "config.mcp.tools.security", fallback: "Security" }, - { - icon: "construction-rounded", - key: "config.mcp.tools.misc", - fallback: "Misc", - }, - { icon: "smart-toy-rounded", key: "config.mcp.tools.ai", fallback: "AI" }, - ]; - return (
@@ -207,29 +186,6 @@ export default function McpSection() { - {/* Available tools */} -
- - {t("config.mcp.tools.title", "What your assistant can do")} - - - {tools.map((tool) => ( - - } - > - {t(tool.key, tool.fallback)} - - ))} - -
- {/* Tip / cross-link */}