diff options
Diffstat (limited to 'packages/app/src/components/settings-models.tsx')
| -rw-r--r-- | packages/app/src/components/settings-models.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/app/src/components/settings-models.tsx b/packages/app/src/components/settings-models.tsx index 07f6d30e1..eff62cd6c 100644 --- a/packages/app/src/components/settings-models.tsx +++ b/packages/app/src/components/settings-models.tsx @@ -4,7 +4,6 @@ import { Switch } from "@opencode-ai/ui/switch" import { Icon } from "@opencode-ai/ui/icon" import { IconButton } from "@opencode-ai/ui/icon-button" import { TextField } from "@opencode-ai/ui/text-field" -import type { IconName } from "@opencode-ai/ui/icons/provider" import { type Component, For, Show } from "solid-js" import { useLanguage } from "@/context/language" import { useModels } from "@/context/models" @@ -98,7 +97,7 @@ export const SettingsModels: Component = () => { {(group) => ( <div class="flex flex-col gap-1"> <div class="flex items-center gap-2 pb-2"> - <ProviderIcon id={group.category as IconName} class="size-5 shrink-0 icon-strong-base" /> + <ProviderIcon id={group.category} class="size-5 shrink-0 icon-strong-base" /> <span class="text-14-medium text-text-strong">{group.items[0].provider.name}</span> </div> <div class="bg-surface-raised-base px-4 rounded-lg"> |
