From 3e200b64fbac161e1e90c1bd6ea5329194ba9f50 Mon Sep 17 00:00:00 2001 From: vincez-hms-coder <265218533+vincez-hms-coder@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:37:15 -0400 Subject: [PATCH] fix(profiles): update terminal command for copying based on profile name Co-authored-by: Copilot --- web/src/pages/ProfilesPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/ProfilesPage.tsx b/web/src/pages/ProfilesPage.tsx index 769c74d217c..ff7e22a5839 100644 --- a/web/src/pages/ProfilesPage.tsx +++ b/web/src/pages/ProfilesPage.tsx @@ -127,7 +127,7 @@ export default function ProfilesPage() { }; const handleCopyTerminalCommand = async (name: string) => { - const cmd = `hermes -p ${name}`; + const cmd = name === "default" ? "hermes setup" : `${name} setup`; try { await navigator.clipboard.writeText(cmd); showToast(`${t.profiles.commandCopied}: ${cmd}`, "success");