diff --git a/src/commands/auth-choice-options.test.ts b/src/commands/auth-choice-options.test.ts index 492eefd3b..e0e95cbe7 100644 --- a/src/commands/auth-choice-options.test.ts +++ b/src/commands/auth-choice-options.test.ts @@ -1,6 +1,9 @@ import { describe, expect, it } from "vitest"; -import { CLAUDE_CLI_PROFILE_ID, type AuthProfileStore } from "../agents/auth-profiles.js"; +import { + type AuthProfileStore, + CLAUDE_CLI_PROFILE_ID, +} from "../agents/auth-profiles.js"; import { buildAuthChoiceOptions } from "./auth-choice-options.js"; describe("buildAuthChoiceOptions", () => { diff --git a/src/commands/configure.ts b/src/commands/configure.ts index 7a8255471..eab3a7934 100644 --- a/src/commands/configure.ts +++ b/src/commands/configure.ts @@ -286,7 +286,9 @@ async function promptAuthConfig( await select({ message: "Model/auth choice", options: buildAuthChoiceOptions({ - store: ensureAuthProfileStore(undefined, { allowKeychainPrompt: false }), + store: ensureAuthProfileStore(undefined, { + allowKeychainPrompt: false, + }), includeSkip: true, includeClaudeCliIfMissing: true, }),