From f01232730828f5f9f01ddd8212fdc81ed3860bd1 Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Mon, 9 Feb 2026 09:31:06 -0500 Subject: [PATCH] feat: add login success message --- src/commands/auth/login.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/auth/login.ts b/src/commands/auth/login.ts index fff47088..aa017be6 100644 --- a/src/commands/auth/login.ts +++ b/src/commands/auth/login.ts @@ -52,6 +52,8 @@ export default class AuthLogin extends Command { } catch (error) { this.error(`User setup failed. ${getErrorMessage(error)}`); } + + this.log('\nLogin completed successfully.'); } private startServerAndAwaitCode(authUrl: string, expectedState: string): Promise {