From 1dd782e2aea3f0704ee2fa3ab005987445881f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= <57442769+gjedlicska@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:16:03 +0100 Subject: [PATCH] fix(cli): user proper plan name as choice (#3611) --- packages/server/modules/cli/commands/workspaces/set-plan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/modules/cli/commands/workspaces/set-plan.ts b/packages/server/modules/cli/commands/workspaces/set-plan.ts index 3f18f6e514..301e1c414c 100644 --- a/packages/server/modules/cli/commands/workspaces/set-plan.ts +++ b/packages/server/modules/cli/commands/workspaces/set-plan.ts @@ -25,7 +25,7 @@ const command: CommandModule< describe: 'Plan to set the status for', type: 'string', default: 'business', - choices: ['business', 'starter', 'pro'] + choices: ['business', 'starter', 'plus'] }, status: { describe: 'Status to set for the workspace plan',