fix(site): update editing message in agents chat input (#23283)

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
This commit is contained in:
Matt Vollmer
2026-03-19 12:57:59 +00:00
committed by GitHub
parent 7a98b4a876
commit d0f93f0818
+1 -1
View File
@@ -642,7 +642,7 @@ export const AgentChatInput = memo<AgentChatInputProps>(
<PencilIcon className="h-3.5 w-3.5" />
{isLoading
? "Saving edit..."
: "Editing message \u2014 all subsequent messages will be deleted"}
: "Editing will delete all subsequent messages and restart the conversation here."}
</span>
<Button
type="button"