diff --git a/internal/tui/page/chat.go b/internal/tui/page/chat.go index 45e038e7c4..1ad86207e2 100644 --- a/internal/tui/page/chat.go +++ b/internal/tui/page/chat.go @@ -64,7 +64,7 @@ func (p *chatPage) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return p, util.ReportWarn("Agent is busy, please wait before executing a command...") } // Handle custom command execution - cmd := p.sendMessage(msg.Content) + cmd := p.sendMessage(msg.Content, nil) if cmd != nil { return p, cmd }