We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 600e76b commit d8bad84Copy full SHA for d8bad84
src/project/initProjectWizard.ts
@@ -51,7 +51,7 @@ export async function initProjectWizard(rootDir: string, opts: { diagramFile?: s
51
const boardType = await select({
52
message: 'Select the board to simulate:',
53
options: filteredBoards.map((board) => ({ value: board.board, label: board.title })),
54
- maxItems: 12,
+ maxItems: process.stdout.rows - 4,
55
});
56
if (isCancel(boardType)) {
57
cancel('Operation cancelled.');
0 commit comments