From 9c6972b2f65d78ddbbe4388c46c2c1d623683fba Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Tue, 17 Mar 2026 11:07:07 -0700 Subject: [PATCH] fix(auth): update setup login copy and static auth logo (#1421) Co-authored-by: Letta Code --- src/auth/setup-ui.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/auth/setup-ui.tsx b/src/auth/setup-ui.tsx index 3f77d9a..da92b6c 100644 --- a/src/auth/setup-ui.tsx +++ b/src/auth/setup-ui.tsx @@ -13,6 +13,9 @@ import { pollForToken, requestDeviceCode } from "./oauth"; type SetupMode = "menu" | "device-code" | "auth-code" | "self-host" | "done"; +const AUTH_LOGIN_LABEL = "Login to Letta Code"; +const AUTH_LOGO_ANIMATE = false; + interface SetupUIProps { onComplete: () => void; } @@ -140,9 +143,12 @@ export function SetupUI({ onComplete }: SetupUIProps) { if (mode === "device-code") { return ( - + - Login to Letta Platform + {AUTH_LOGIN_LABEL} Opening browser for authorization... @@ -162,7 +168,7 @@ export function SetupUI({ onComplete }: SetupUIProps) { // Main menu return ( - + Welcome to Letta Code! @@ -174,7 +180,8 @@ export function SetupUI({ onComplete }: SetupUIProps) { selectedOption === 0 ? colors.selector.itemHighlighted : undefined } > - {selectedOption === 0 ? "> " : " "}Login to Letta Platform + {selectedOption === 0 ? "> " : " "} + {AUTH_LOGIN_LABEL}