From d0f93f0818bce1a978da9ffc200632e51d633bba Mon Sep 17 00:00:00 2001 From: Matt Vollmer Date: Thu, 19 Mar 2026 08:57:59 -0400 Subject: [PATCH] fix(site): update editing message in agents chat input (#23283) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the editing banner message in the agents chat input from: > Editing message — all subsequent messages will be deleted to: > Editing will delete all subsequent messages and restart the conversation here. --- PR generated with Coder Agents --- site/src/pages/AgentsPage/AgentChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/pages/AgentsPage/AgentChatInput.tsx b/site/src/pages/AgentsPage/AgentChatInput.tsx index d7decfcde2..6c0d7bf08d 100644 --- a/site/src/pages/AgentsPage/AgentChatInput.tsx +++ b/site/src/pages/AgentsPage/AgentChatInput.tsx @@ -642,7 +642,7 @@ export const AgentChatInput = memo( {isLoading ? "Saving edit..." - : "Editing message \u2014 all subsequent messages will be deleted"} + : "Editing will delete all subsequent messages and restart the conversation here."}