From f463ce6694143a8f17953ca029d4c274d0193edd Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Mon, 7 Apr 2025 19:43:31 +0200 Subject: improve status message handling --- internal/tui/components/repl/editor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/tui/components/repl') diff --git a/internal/tui/components/repl/editor.go b/internal/tui/components/repl/editor.go index cce966ca7..d3e8d2c78 100644 --- a/internal/tui/components/repl/editor.go +++ b/internal/tui/components/repl/editor.go @@ -140,7 +140,7 @@ func (m *editorCmp) Send() tea.Cmd { return func() tea.Msg { messages, _ := m.app.Messages.List(m.sessionID) if hasUnfinishedMessages(messages) { - return util.InfoMsg("Assistant is still working on the previous message") + return util.ReportWarn("Assistant is still working on the previous message") } a, _ := agent.NewCoderAgent(m.app) -- cgit v1.2.3