fix: redundant status msg

This commit is contained in:
adamdottv 2025-05-15 14:42:10 -05:00
parent b112216241
commit d7af7dd3fe
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -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{})