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}