Skip to content

Commit

Permalink
Update packages/prompts/src/index.ts
Browse files Browse the repository at this point in the history
fix output message
  • Loading branch information
cpreston321 committed Aug 9, 2023
1 parent 03ee8e5 commit 4a5a00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/prompts/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ export const spinner = () => {
: color.red(S_STEP_ERROR);
process.stdout.write(cursor.move(-999, 0));
process.stdout.write(erase.down(1));
process.stdout.write(`${step} ${message}\n`);
process.stdout.write(`${step} ${_message}\n`);
unblock();
};

Expand Down

0 comments on commit 4a5a00f

Please sign in to comment.