From 6809d045765ded59ff1dc1af3a23382fe6a66e16 Mon Sep 17 00:00:00 2001 From: cthomas Date: Mon, 15 Dec 2025 17:30:44 -0800 Subject: [PATCH] feat: alias quit input to /exit (#223) --- src/cli/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/App.tsx b/src/cli/App.tsx index 0ab649d..5a5b22b 100644 --- a/src/cli/App.tsx +++ b/src/cli/App.tsx @@ -1458,7 +1458,7 @@ export default function App({ userCancelledRef.current = false; let aliasedMsg = msg; - if (msg === "exit") { + if (msg === "exit" || msg === "quit") { aliasedMsg = "/exit"; }