Simplify GitHub App setup prompt in install wizard

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-10 16:47:06 -04:00
parent 2c6a06e43b
commit 974f2d31e2

View file

@ -642,10 +642,7 @@ pub async fn run_install() -> Result<()> {
let mut github_env_pairs: Vec<(String, String)> = Vec::new();
{
let setup_github = tokio::task::spawn_blocking(|| {
prompt_confirm(
"Set up a GitHub App? (creates a new GitHub App for PR creation and repo access)",
true,
)
prompt_confirm("Set up a GitHub App? (Recommended)", true)
})
.await??;