From cac1f22ec3887c0534c2ffd30879ab0aa5f1e078 Mon Sep 17 00:00:00 2001 From: Elijah Kennedy Date: Mon, 20 Oct 2025 19:42:12 -0400 Subject: [PATCH] Add title input to create-app option --- client/packages/cli/src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/packages/cli/src/index.js b/client/packages/cli/src/index.js index 1931bc7ca3..efd7de4d11 100644 --- a/client/packages/cli/src/index.js +++ b/client/packages/cli/src/index.js @@ -61,7 +61,7 @@ function error(firstArg, ...rest) { console.error(chalk.red('[error]') + ' ' + firstArg, ...rest); } -// consts +// constss const potentialEnvs = { catchall: 'INSTANT_APP_ID', @@ -342,7 +342,7 @@ program program .command('create-app') .description('Generate an app ID and admin token for a new app.') - .option('-t --title', 'Title for the created app') + .option('-t --title ', 'Title for the created app') .option( '-o --org <org-id>', 'The (optional) id of the organization to create the app in.',