chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-16 00:46:18 +00:00
parent 3d6f90cb53
commit ac2fa668cf
4 changed files with 18 additions and 18 deletions

View File

@@ -41,9 +41,9 @@ async function handlePluginAuth(plugin: { auth: PluginAuth }, provider: string,
const method = await prompts.select({
message: "Login method",
options: plugin.auth.methods.map((x, index) => ({
label: x.label,
value: index.toString(),
})),
label: x.label,
value: index.toString(),
})),
})
if (prompts.isCancel(method)) throw new UI.CancelledError()
index = parseInt(method)