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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -324,7 +324,7 @@ export default function ProviderDetailPage() {
return providerInfo.apiType === "responses" ? "/providers/oai-r.png" : "/providers/oai-cc.png";
}
if (isAnthropicCompatible) {
return "/providers/anthropic.png";
return "/providers/anthropic-m.png";
}
return `/providers/${providerInfo.id}.png`;
};

View File

@@ -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`;
};