mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-19 16:39:50 +00:00
fix: reorder interactive menu — "Create" before "Connect" (#2619)
Co-authored-by: Claude <claude@anthropic.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3c11bf33d7
commit
689989005a
2 changed files with 5 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@openrouter/spawn",
|
||||
"version": "0.17.21",
|
||||
"version": "0.17.22",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"spawn": "cli.js"
|
||||
|
|
|
|||
|
|
@ -225,14 +225,14 @@ export async function cmdInteractive(): Promise<void> {
|
|||
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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue