From f1ca7808c4d170e617f7a6cd2ccfdf4bfd7fcfe3 Mon Sep 17 00:00:00 2001 From: A <258483684+la14-1@users.noreply.github.com> Date: Tue, 3 Mar 2026 11:50:30 -0800 Subject: [PATCH] fix(ux): remove duplicate OAuth browser fallback URL message (#2143) The DigitalOcean OAuth flow printed two near-identical fallback URL messages: one manually before calling openBrowser(), and one from openBrowser() itself. Remove the manual one since openBrowser() already handles the fallback. Fixes #2140 Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 --- packages/cli/src/digitalocean/digitalocean.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/cli/src/digitalocean/digitalocean.ts b/packages/cli/src/digitalocean/digitalocean.ts index f26672d2..4c6f9cb4 100644 --- a/packages/cli/src/digitalocean/digitalocean.ts +++ b/packages/cli/src/digitalocean/digitalocean.ts @@ -426,7 +426,6 @@ async function tryDoOAuth(): Promise { const authUrl = `${DO_OAUTH_AUTHORIZE}?${authParams.toString()}`; logStep("Opening browser to authorize with DigitalOcean..."); - logStep(`If the browser doesn't open, visit: ${authUrl}`); openBrowser(authUrl); // Wait up to 120 seconds