diff options
| author | Adam <[email protected]> | 2025-12-10 07:46:10 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-10 15:17:03 -0600 |
| commit | 804ad5897f17cd5f002fbd0c124d5301205efcfb (patch) | |
| tree | e0cab61264cd3088854915870c90f65357077a04 /packages/desktop/src/components | |
| parent | f20d6e855556693e33cddd51c837263c8846694d (diff) | |
| download | opencode-804ad5897f17cd5f002fbd0c124d5301205efcfb.tar.gz opencode-804ad5897f17cd5f002fbd0c124d5301205efcfb.zip | |
wip(desktop): progress
Diffstat (limited to 'packages/desktop/src/components')
| -rw-r--r-- | packages/desktop/src/components/prompt-input.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/desktop/src/components/prompt-input.tsx b/packages/desktop/src/components/prompt-input.tsx index bbd638e44..8579647da 100644 --- a/packages/desktop/src/components/prompt-input.tsx +++ b/packages/desktop/src/components/prompt-input.tsx @@ -461,7 +461,8 @@ export const PromptInput: Component<PromptInputProps> = (props) => { items={local.model.list()} current={local.model.current()} filterKeys={["provider.name", "name", "id"]} - groupBy={(x) => (local.model.recent().includes(x) ? "Recent" : x.provider.name)} + // groupBy={(x) => (local.model.recent().includes(x) ? "Recent" : x.provider.name)} + groupBy={(x) => x.provider.name} sortGroupsBy={(a, b) => { const order = ["opencode", "anthropic", "github-copilot", "openai", "google", "openrouter", "vercel"] if (a.category === "Recent" && b.category !== "Recent") return -1 |
