From ab5d8dc0bbc74f395d5b74add1ffa42c2aa482d6 Mon Sep 17 00:00:00 2001 From: cyrus Date: Mon, 2 Feb 2026 18:22:06 +0530 Subject: [PATCH] fix: change skill button text from 'Configure' to 'Manage' for connected skills MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update SkillsGrid button text to dynamically show based on connection status - Connected skills now show 'Manage' button instead of 'Configure' - Provides clearer user indication of skill state - Improves UX for authenticated skills like Telegram 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/SkillsGrid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SkillsGrid.tsx b/src/components/SkillsGrid.tsx index 339b9a6c7..086dd45ef 100644 --- a/src/components/SkillsGrid.tsx +++ b/src/components/SkillsGrid.tsx @@ -408,7 +408,7 @@ export default function SkillsGrid() { setSetupModalOpen(true); }} className="px-4 py-1.5 text-xs font-medium text-primary-300 bg-primary-500/10 border border-primary-500/30 rounded-lg hover:bg-primary-500/20 transition-colors flex-shrink-0 ml-3"> - Configure + {connectionStatus === 'connected' ? 'Manage' : 'Configure'} );