diff options
| author | adamdottv <[email protected]> | 2025-05-15 14:42:10 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-15 14:42:10 -0500 |
| commit | d7af7dd3fefedb4484eddebeafb0fb5c48440233 (patch) | |
| tree | 5a6c4540a0fd44ca688da71ed9525abbcd0948a8 /internal/tui | |
| parent | b112216241ce6f17bd020d5299669c2eb0aa791d (diff) | |
| download | opencode-d7af7dd3fefedb4484eddebeafb0fb5c48440233.tar.gz opencode-d7af7dd3fefedb4484eddebeafb0fb5c48440233.zip | |
fix: redundant status msg
Diffstat (limited to 'internal/tui')
| -rw-r--r-- | internal/tui/components/dialog/models.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/tui/components/dialog/models.go b/internal/tui/components/dialog/models.go index b21f166ca..cc3848817 100644 --- a/internal/tui/components/dialog/models.go +++ b/internal/tui/components/dialog/models.go @@ -127,7 +127,6 @@ func (m *modelDialogCmp) Update(msg tea.Msg) (tea.Model, tea.Cmd) { m.switchProvider(1) } case key.Matches(msg, modelKeys.Enter): - status.Info(fmt.Sprintf("selected model: %s", m.models[m.selectedIdx].Name)) return m, util.CmdHandler(ModelSelectedMsg{Model: m.models[m.selectedIdx]}) case key.Matches(msg, modelKeys.Escape): return m, util.CmdHandler(CloseModelDialogMsg{}) |
