fix(settings): exclude custom from API Keys section (lives in Custom Providers)

This commit is contained in:
Rohit Sharma
2026-05-03 23:57:13 +02:00
parent 29747ce37c
commit 79846cff92

View File

@@ -1252,7 +1252,7 @@ function ClaudeConfigSection({
icon={CloudIcon}
>
{data.providers
.filter((p) => p.envKeys.length > 0)
.filter((p) => p.envKeys.length > 0 && p.id !== 'custom')
.map((provider) => (
<SettingsRow
key={provider.id}