diff options
Diffstat (limited to 'packages/desktop/src/components')
| -rw-r--r-- | packages/desktop/src/components/prompt-input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/desktop/src/components/prompt-input.tsx b/packages/desktop/src/components/prompt-input.tsx index 2c153ecc3..70ee0a739 100644 --- a/packages/desktop/src/components/prompt-input.tsx +++ b/packages/desktop/src/components/prompt-input.tsx @@ -537,7 +537,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { {(i) => ( <div class="w-full flex items-center gap-x-2.5"> <span>{i.name}</span> - <Show when={!i.cost || i.cost?.input === 0}> + <Show when={i.provider.id === "opencode" && (!i.cost || i.cost?.input === 0)}> <Tag>Free</Tag> </Show> <Show when={i.latest}> |
