diff options
| author | Tommaso Sciortino <[email protected]> | 2025-06-19 19:41:19 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-20 02:41:19 +0000 |
| commit | 0c9b138f5e1c882b97f99e4e81210119b0fae15c (patch) | |
| tree | 78597ca03639554dbde3723adfbdaeeb1c7029ed /packages/cli/src | |
| parent | 2f1fc3f359b5c6e989ae75efc8a92325f2c369bf (diff) | |
Reword auth dialog options (#1246)
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/ui/components/AuthDialog.tsx | 6 |
1 files 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 |
