Skip to content

Commit ba56904

Browse files
committed
Minor attempt login cleanup
1 parent cba8dc6 commit ba56904

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/commands/login/attempt-login.mts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,10 @@ export async function attemptLogin(
129129
return { ok: false, message: 'Canceled', cause: 'Canceled by user' }
130130
}
131131
if (wantToComplete) {
132+
logger.log('')
132133
logger.log('Setting up tab completion...')
133-
const result = await setupTabCompletion('socket')
134-
if (result.ok) {
134+
const setupCResult = await setupTabCompletion('socket')
135+
if (setupCResult.ok) {
135136
logger.success(
136137
'Tab completion will be enabled after restarting your terminal',
137138
)

0 commit comments

Comments
 (0)