summaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-15 14:42:10 -0500
committeradamdottv <[email protected]>2025-05-15 14:42:10 -0500
commitd7af7dd3fefedb4484eddebeafb0fb5c48440233 (patch)
tree5a6c4540a0fd44ca688da71ed9525abbcd0948a8 /internal
parentb112216241ce6f17bd020d5299669c2eb0aa791d (diff)
downloadopencode-d7af7dd3fefedb4484eddebeafb0fb5c48440233.tar.gz
opencode-d7af7dd3fefedb4484eddebeafb0fb5c48440233.zip
fix: redundant status msg
Diffstat (limited to 'internal')
-rw-r--r--internal/tui/components/dialog/models.go1
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{})