We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774dcb6 commit 37e0a70Copy full SHA for 37e0a70
packages/tui/internal/tui/tui.go
@@ -189,6 +189,7 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
189
updated, cmd := a.messages.Update(msg)
190
a.messages = updated.(chat.MessagesComponent)
191
cmds = append(cmds, cmd)
192
+ return a, tea.Batch(cmds...)
193
case tea.BackgroundColorMsg:
194
styles.Terminal = &styles.TerminalInfo{
195
BackgroundIsDark: msg.IsDark(),
0 commit comments