diff --git a/.changeset/login-already-logged-in-visibility.md b/.changeset/login-already-logged-in-visibility.md new file mode 100755 index 000000000..265ebed5a --- /dev/null +++ b/.changeset/login-already-logged-in-visibility.md @@ -0,0 +1,4 @@ +--- +"@moonshot-ai/kimi-code": patch +--- +Render the "/login" already-logged-in confirmation in the success color instead of dim text, so the "Already logged in. Model configuration refreshed." message is clearly visible. diff --git a/apps/kimi-code/src/tui/commands/auth.ts b/apps/kimi-code/src/tui/commands/auth.ts index 773638485..a44b4fab5 100644 --- a/apps/kimi-code/src/tui/commands/auth.ts +++ b/apps/kimi-code/src/tui/commands/auth.ts @@ -74,7 +74,7 @@ async function handleKimiCodeOAuthLogin(host: SlashCommandHost): Promise { already_logged_in: alreadyLoggedIn, }); if (alreadyLoggedIn) { - host.showStatus('Already logged in. Model configuration refreshed.'); + host.showStatus('Already logged in. Model configuration refreshed.', 'success'); } } catch (error) { const cancelled = controller.signal.aborted;