chore(providers): use Anthropic Compatible logo

- Update Anthropic Compatible provider configuration to use the new m-variant logo (anthropic-m.png) instead of the standard anthropic.png for consistent branding across the provider icons.
- Target: provider icons
This commit is contained in:
ramhaidar
2026-02-03 15:41:10 +07:00
parent da5bdef4cb
commit 8ceb8f24c3
3 changed files with 2 additions and 2 deletions
@@ -279,7 +279,7 @@ function ApiKeyProviderCard({ providerId, provider, stats }) {
return provider.apiType === "responses" ? "/providers/oai-r.png" : "/providers/oai-cc.png";
}
if (isAnthropicCompatible) {
return "/providers/anthropic.png"; // Use Anthropic icon as base
return "/providers/anthropic-m.png"; // Use Anthropic icon as base
}
return `/providers/${provider.id}.png`;
};