diff --git a/internal/cmd/login.go b/internal/cmd/login.go index f905e5ff..b5129cfd 100644 --- a/internal/cmd/login.go +++ b/internal/cmd/login.go @@ -276,11 +276,11 @@ func performGeminiCLISetup(ctx context.Context, httpClient *http.Client, storage if isFreeUser { // Interactive prompt for free users - fmt.Printf("\n⚠️ Google returned a different project ID:\n") - fmt.Printf(" Requested (frontend): %s\n", projectID) - fmt.Printf(" Returned (backend): %s\n\n", responseProjectID) - fmt.Printf("ℹ️ Backend project IDs have access to preview models (gemini-3-*).\n") - fmt.Printf(" This is normal for free tier users.\n\n") + fmt.Printf("\nGoogle returned a different project ID:\n") + fmt.Printf(" Requested (frontend): %s\n", projectID) + fmt.Printf(" Returned (backend): %s\n\n", responseProjectID) + fmt.Printf(" Backend project IDs have access to preview models (gemini-3-*).\n") + fmt.Printf(" This is normal for free tier users.\n\n") fmt.Printf("Which project ID would you like to use?\n") fmt.Printf(" [1] Backend (recommended): %s\n", responseProjectID) fmt.Printf(" [2] Frontend: %s\n\n", projectID) @@ -292,7 +292,7 @@ func performGeminiCLISetup(ctx context.Context, httpClient *http.Client, storage if choice == "2" { log.Infof("Using frontend project ID: %s", projectID) - fmt.Println("⚠️ Warning: Frontend project IDs may not have access to preview models.") + fmt.Println(". Warning: Frontend project IDs may not have access to preview models.") finalProjectID = projectID } else { log.Infof("Using backend project ID: %s (recommended)", responseProjectID) @@ -303,7 +303,7 @@ func performGeminiCLISetup(ctx context.Context, httpClient *http.Client, storage log.Warnf("Gemini onboarding returned project %s instead of requested %s; keeping requested project ID.", responseProjectID, projectID) } } else { - finalProjectID = responseProjectID + finalProjectID = responseProjectID } }