diff --git a/packages/ui/src/components/layout/ProjectActionsButton.tsx b/packages/ui/src/components/layout/ProjectActionsButton.tsx index 2b55fc75..36cbc559 100644 --- a/packages/ui/src/components/layout/ProjectActionsButton.tsx +++ b/packages/ui/src/components/layout/ProjectActionsButton.tsx @@ -499,7 +499,7 @@ export const ProjectActionsButton = ({ }; const normalizedCommand = stripControlChars(action.command.trim().replace(/\r\n|\r/g, '\n')); - await terminal.sendInput(activeSessionId, `${normalizedCommand}\n\u0004`); + await terminal.sendInput(activeSessionId, `${normalizedCommand}\r`); } catch (error) { setRunningByKey((prev) => { const next = { ...prev };