From c192485e956bbe7ee15d201103f253f51d58f7d5 Mon Sep 17 00:00:00 2001 From: npub1223z34hd7vtwc6qj4s7flsxkj644nlre2nthu7lrrmkumhu3xddsrx9r6w <52a228d6edf316ec6812ac3c9fc0d696ab59fc7954d77e7be31eedcddf91335b@sprout-oss.stage.blox.sqprod.co> Date: Tue, 7 Jul 2026 01:12:30 -0700 Subject: [PATCH] fix(desktop): clarify saved-template delete confirmation copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Title now names the template ("Delete Ned template?") and the body spells out that only the saved template is removed — agents created from it, and the agent it was saved from, are unaffected. Co-authored-by: Taylor Ho Signed-off-by: Taylor Ho --- .../src/features/agents/ui/CreateAgentStartDialog.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/desktop/src/features/agents/ui/CreateAgentStartDialog.tsx b/desktop/src/features/agents/ui/CreateAgentStartDialog.tsx index 07534dd21..8b7a3c80b 100644 --- a/desktop/src/features/agents/ui/CreateAgentStartDialog.tsx +++ b/desktop/src/features/agents/ui/CreateAgentStartDialog.tsx @@ -349,11 +349,14 @@ export function CreateAgentStartDialog({ > - Delete template? - + {templateToDelete - ? `Delete "${templateToDelete.displayName}". Agents created from it are not affected, but this saved template will be removed from all your devices.` - : "Delete this saved template."} + ? `Delete ${templateToDelete.displayName} template?` + : "Delete template?"} + + + This only deletes the saved template. Agents created from this + template, and the agent it was saved from, won’t be affected.