Listen for msgStateEnter in conversations view

This commit is contained in:
Matt Low 2024-05-08 13:32:44 +00:00
parent aeeb7bb7f7
commit 60394de620
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ func (m *conversationsModel) handleResize(width, height int) {
func (m conversationsModel) Update(msg tea.Msg) (conversationsModel, tea.Cmd) {
var cmds []tea.Cmd
switch msg := msg.(type) {
case msgStateChange:
case msgStateEnter:
cmds = append(cmds, m.loadConversations())
m.content.SetContent(m.renderConversationList())
case tea.WindowSizeMsg: