diff --git a/src/components/plugins/view/PluginSettingsTab.tsx b/src/components/plugins/view/PluginSettingsTab.tsx index 106a7511..72de671b 100644 --- a/src/components/plugins/view/PluginSettingsTab.tsx +++ b/src/components/plugins/view/PluginSettingsTab.tsx @@ -25,7 +25,7 @@ import PluginIcon from './PluginIcon'; const STARTER_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-starter'; const TERMINAL_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-terminal'; const SCHEDULED_PROMPT_PLUGIN_URL = 'https://github.com/grostim/cloudcli-cron'; -const CLAUDE_WATCH_PLUGIN_URL = 'https://github.com/satsuki19980613/claude-watch'; +const CLAUDE_WATCH_PLUGIN_URL = 'https://github.com/satsuki19980613/cloudcli-claude-watch'; type PluginRecommendation = { id: string; @@ -57,10 +57,10 @@ const OFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [ const UNOFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [ { - id: 'claude-watch', + id: 'cloudcli-claude-watch', translationKey: 'claudeWatchPlugin', repoUrl: CLAUDE_WATCH_PLUGIN_URL, - installedNames: ['claude-watch'], + installedNames: ['cloudcli-claude-watch'], icon: Activity, source: 'unofficial', }, @@ -320,10 +320,12 @@ function RecommendationSection({ function PluginRecommendationCard({ recommendation, onInstall, + disabled, installing, }: { recommendation: PluginRecommendation; onInstall: () => void; + disabled: boolean; installing: boolean; }) { const { t } = useTranslation('settings'); @@ -367,7 +369,7 @@ function PluginRecommendationCard({