Skip to content
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
7 changes: 4 additions & 3 deletions src/browser/features/Settings/Sections/ProvidersSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1147,9 +1147,10 @@ export function ProvidersSection() {
Get API Key
<ExternalLink className="h-2.5 w-2.5" />
</a>
{provider === "anthropic" &&
configured &&
config?.[provider]?.apiKeySet === false && (
{configured &&
config?.[provider]?.apiKeySet === false &&
// OpenAI can be configured via ChatGPT OAuth, not just env vars
!(provider === "openai" && codexOauthIsConnected) && (
<div className="text-muted text-xs">
Configured via environment variables.
</div>
Expand Down
Loading