diff --git a/packages/coding-agent/src/modes/interactive/interactive-mode.ts b/packages/coding-agent/src/modes/interactive/interactive-mode.ts index b745c454..e150e20e 100644 --- a/packages/coding-agent/src/modes/interactive/interactive-mode.ts +++ b/packages/coding-agent/src/modes/interactive/interactive-mode.ts @@ -4894,8 +4894,8 @@ export class InteractiveMode { } private showLoginAuthTypeSelector(providerOptions?: AuthSelectorProvider[]): void { - const subscriptionLabel = "Use a subscription"; - const apiKeyLabel = "Use an API key"; + const subscriptionLabel = "Sign in with an account"; + const apiKeyLabel = "Sign in with an API key"; const availableAuthTypes = providerOptions ? new Set(providerOptions.map((provider) => provider.authType)) : new Set(["oauth", "api_key"]);