diff --git a/packages/cli/package.json b/packages/cli/package.json index 67007ea2..991cff68 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "0.17.21", + "version": "0.17.22", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/commands/interactive.ts b/packages/cli/src/commands/interactive.ts index b70e7aff..b3b46b04 100644 --- a/packages/cli/src/commands/interactive.ts +++ b/packages/cli/src/commands/interactive.ts @@ -225,14 +225,14 @@ export async function cmdInteractive(): Promise { const topChoice = await p.select({ message: "What would you like to do?", options: [ - { - value: "connect", - label: "Connect to existing server", - }, { value: "create", label: "Create a new server", }, + { + value: "connect", + label: "Connect to existing server", + }, ], }); if (p.isCancel(topChoice)) {