From 0c9b138f5e1c882b97f99e4e81210119b0fae15c Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Thu, 19 Jun 2025 19:41:19 -0700 Subject: [PATCH] Reword auth dialog options (#1246) --- packages/cli/src/ui/components/AuthDialog.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/ui/components/AuthDialog.tsx b/packages/cli/src/ui/components/AuthDialog.tsx index 856d4238..be36da8a 100644 --- a/packages/cli/src/ui/components/AuthDialog.tsx +++ b/packages/cli/src/ui/components/AuthDialog.tsx @@ -30,15 +30,15 @@ export function AuthDialog({ ); const allAuthItems = [ { - label: 'Login with Google Personal Account', + label: 'Login with Google', value: AuthType.LOGIN_WITH_GOOGLE_PERSONAL, }, { label: 'Gemini API Key', value: AuthType.USE_GEMINI }, { - label: 'Login with GCP Project and Google Work Account', + label: 'Login with Google Work', value: AuthType.LOGIN_WITH_GOOGLE_ENTERPRISE, }, - { label: 'Vertex AI', value: AuthType.USE_VERTEX_AI }, + { label: 'Vertex API Key', value: AuthType.USE_VERTEX_AI }, ]; const isSelectedAuthInMore = allAuthItems