diff options
Diffstat (limited to 'packages/app/src')
| -rw-r--r-- | packages/app/src/components/prompt-input.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index 34f83b13e..f523671ec 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -1497,7 +1497,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { > <Show when={local.model.current()?.provider?.id}> <ProviderIcon - id={local.model.current()!.provider.id} + id={local.model.current()?.provider?.id ?? ""} class="size-4 shrink-0 opacity-40 group-hover:opacity-100 transition-opacity duration-150" style={{ "will-change": "opacity", transform: "translateZ(0)" }} /> @@ -1529,7 +1529,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { > <Show when={local.model.current()?.provider?.id}> <ProviderIcon - id={local.model.current()!.provider.id} + id={local.model.current()?.provider?.id ?? ""} class="size-4 shrink-0 opacity-40 group-hover:opacity-100 transition-opacity duration-150" style={{ "will-change": "opacity", transform: "translateZ(0)" }} /> |
