diff --git a/src/commands/cliproxy-command.ts b/src/commands/cliproxy-command.ts index 49ade110..0332b5a1 100644 --- a/src/commands/cliproxy-command.ts +++ b/src/commands/cliproxy-command.ts @@ -366,12 +366,14 @@ async function handleList(): Promise { for (const status of authStatuses) { const oauthConfig = getOAuthConfig(status.provider); const icon = status.authenticated ? ok('') : warn(''); - const authLabel = status.authenticated ? color('authenticated', 'success') : dim('not authenticated'); - const lastAuthStr = status.lastAuth - ? dim(` (${status.lastAuth.toLocaleDateString()})`) - : ''; + const authLabel = status.authenticated + ? color('authenticated', 'success') + : dim('not authenticated'); + const lastAuthStr = status.lastAuth ? dim(` (${status.lastAuth.toLocaleDateString()})`) : ''; - console.log(` ${icon} ${color(status.provider, 'command').padEnd(18)} ${oauthConfig.displayName.padEnd(16)} ${authLabel}${lastAuthStr}`); + console.log( + ` ${icon} ${color(status.provider, 'command').padEnd(18)} ${oauthConfig.displayName.padEnd(16)} ${authLabel}${lastAuthStr}` + ); } console.log(''); console.log(dim(' To authenticate: ccs --auth')); diff --git a/ui/src/pages/cliproxy.tsx b/ui/src/pages/cliproxy.tsx index ffc1c376..7620ee40 100644 --- a/ui/src/pages/cliproxy.tsx +++ b/ui/src/pages/cliproxy.tsx @@ -68,7 +68,8 @@ export function CliproxyPage() { <> Not authenticated - Run: ccs {status.provider} --auth + Run:{' '} + ccs {status.provider} --auth )}