diff --git a/src/cli/components/CommandPreview.tsx b/src/cli/components/CommandPreview.tsx
index 3acdc6a..33bb86d 100644
--- a/src/cli/components/CommandPreview.tsx
+++ b/src/cli/components/CommandPreview.tsx
@@ -22,9 +22,8 @@ export function CommandPreview({
return null;
}
- // Show agent URL only for cloud users
- const showAgentUrl =
- agentId && agentId !== "loading" && serverUrl?.includes("api.letta.com");
+ const isCloudUser = serverUrl?.includes("api.letta.com");
+ const showBottomBar = agentId && agentId !== "loading";
return (
))}
- {showAgentUrl && (
+ {showBottomBar && (
-
- View agent:
-
+ {isCloudUser ? (
+
+ View agent in ADE
+
+ ) : (
+ Connected to agent located at {serverUrl}
+ )}
)}