fix(site): use Anthropic icon instead of Claude icon for provider (#23661)

This commit is contained in:
Atif Ali
2026-03-26 22:25:55 +05:00
committed by GitHub
parent d18e700699
commit a52153968d
2 changed files with 2 additions and 2 deletions
@@ -22,7 +22,7 @@ export const AIBridgeProviderIcon = ({
case "anthropic":
return (
<ExternalImage
src="/icon/claude.svg"
src="/icon/anthropic.svg"
className={cn(iconClassName, className)}
/>
);
@@ -7,7 +7,7 @@ import { normalizeProvider } from "./helpers";
const providerIconMap: Record<string, string> = {
openai: "/icon/openai.svg",
anthropic: "/icon/claude.svg",
anthropic: "/icon/anthropic.svg",
azure: "/icon/azure.svg",
bedrock: "/icon/aws.svg",
google: "/icon/google.svg",