From 826072c65d9124d929e153f2b18b0648315860ec Mon Sep 17 00:00:00 2001 From: Shlok Goyal Date: Mon, 20 Jul 2026 13:37:26 +0530 Subject: [PATCH] :sparkles: Remove misleading MCP config from success modal (#10415) Signed-off-by: Shlok1729 Signed-off-by: Shlok Goyal Co-authored-by: Andrey Antukh --- .../app/main/ui/settings/integrations.cljs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/frontend/src/app/main/ui/settings/integrations.cljs b/frontend/src/app/main/ui/settings/integrations.cljs index 403893ea68..3151b73c31 100644 --- a/frontend/src/app/main/ui/settings/integrations.cljs +++ b/frontend/src/app/main/ui/settings/integrations.cljs @@ -116,25 +116,6 @@ (tr "integrations.mcp-key.will-not-expire") (tr "integrations.token.will-not-expire")))]] - (when is-mcp - [:div {:class (stl/css :modal-content)} - [:> text* {:as "div" - :typography t/body-small - :class (stl/css :color-primary)} - (tr "integrations.info.mcp-client-config")] - [:textarea {:class (stl/css :textarea) - :wrap "off" - :rows 7 - :read-only true - :value (dm/str - "{\n" - " \"mcpServers\": {\n" - " \"penpot\": {\n" - " \"url\": \"" cf/mcp-server-url "?userToken=" (:token token-created "") "\"\n" - " }\n" - " }" - "\n}")}]]) - [:div {:class (stl/css :modal-footer)} [:> button* {:variant "secondary" :on-click modal/hide!}