diff --git a/packages/cli/src/commands/create-github-app/index.ts b/packages/cli/src/commands/create-github-app/index.ts index 8882b597c6..f81ad4a81e 100644 --- a/packages/cli/src/commands/create-github-app/index.ts +++ b/packages/cli/src/commands/create-github-app/index.ts @@ -32,10 +32,7 @@ export default async (org: string) => { type: 'list', name: 'appType', message: chalk.blue('What will the app be used for [required]'), - choices: [ - 'Read and Write (needed by Software Templates)', - 'Read only', - ], + choices: ['Read and Write (needed by Software Templates)', 'Read only'], }, ]); const readWrite = answers.appType !== 'Read only';