From dc33b4cd28c8d99b16e5fc424486b31a76c272fd Mon Sep 17 00:00:00 2001 From: Christina Tong Date: Thu, 12 Feb 2026 17:39:05 -0800 Subject: [PATCH] fix: ade default convo link (#944) --- src/cli/App.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cli/App.tsx b/src/cli/App.tsx index 1c17935..e3e9468 100644 --- a/src/cli/App.tsx +++ b/src/cli/App.tsx @@ -5740,7 +5740,10 @@ export default function App({ // Special handling for /ade command - open agent in browser if (trimmed === "/ade") { - const adeUrl = `https://app.letta.com/agents/${agentId}?conversation=${conversationIdRef.current}`; + const adeUrl = + conversationIdRef.current === "default" + ? `https://app.letta.com/agents/${agentId}?conversation=${conversationIdRef.current}` + : `https://app.letta.com/agents/${agentId}?conversation=${conversationIdRef.current}`; const cmd = commandRunner.start("/ade", "Opening ADE..."); // Fire-and-forget browser open