Skip to content

Commit

Permalink
Update web/src/app/admin/configuration/llm/interfaces.ts
Browse files Browse the repository at this point in the history
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
  • Loading branch information
pablonyx and greptile-apps[bot] authored Mar 6, 2025
1 parent 8343234 commit 28a196f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/app/admin/configuration/llm/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const getProviderIcon = (providerName: string, modelName?: string) => {
};

// First check if provider name directly matches an icon
if (providerName?.toLowerCase() in iconMap) {
if (providerName.toLowerCase() in iconMap) {
return iconMap[providerName.toLowerCase()];
}

Expand Down

0 comments on commit 28a196f

Please sign in to comment.