Skip to content

Update translation variable settings.mcp.noServersConfigured #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderer/src/components/settings/McpSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const McpSettings = ({ settings, setSettings }: Props) => {
<div className="mt-4">
<div className="text-sm text-neutral-100 font-medium mb-2 mt-4">{t('settings.mcp.mcpServers')}</div>
{Object.keys(agentConfig.mcpServers).length === 0 ? (
<div className="text-xs text-gray-500 mb-2">{t('mcp.noServersConfigured')}</div>
<div className="text-xs text-gray-500 mb-2">{t('settings.mcp.noServersConfigured')}</div>
) : (
Object.entries(agentConfig.mcpServers).map(([serverName, config]) => (
<McpServerItem
Expand All @@ -263,4 +263,4 @@ export const McpSettings = ({ settings, setSettings }: Props) => {
)}
</div>
);
};
};