From 07988446b6c899f84c1a25d0bf91016c0ca0ca0f Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 19 Aug 2025 11:53:42 -0300 Subject: [PATCH] chore: update error message, this is not user fault --- internal/tui/page/chat/chat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/page/chat/chat.go b/internal/tui/page/chat/chat.go index c82f4ebecf6839183c432ec876576577e102ef88..c843ce7b8cf3702eac4a9ce1b081204fe73f05c5 100644 --- a/internal/tui/page/chat/chat.go +++ b/internal/tui/page/chat/chat.go @@ -697,7 +697,7 @@ func (p *chatPage) sendMessage(text string, attachments []message.Attachment) te cmds = append(cmds, util.CmdHandler(chat.SessionSelectedMsg(session))) } if p.app.CoderAgent == nil { - return util.ReportError(fmt.Errorf("coder agent is not initialized - please check your configuration")) + return util.ReportError(fmt.Errorf("coder agent is not initialized")) } _, err := p.app.CoderAgent.Run(context.Background(), session.ID, text, attachments...) if err != nil {