Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re authored and github-actions[bot] committed Mar 5, 2023
1 parent c96eda5 commit ba6294e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/src/prompts/prompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ export default class Prompt {
}

private restoreCursor() {
const lines = wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1;
const lines =
wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1;
this.output.write(cursor.move(-999, lines * -1));
}

Expand Down

0 comments on commit ba6294e

Please sign in to comment.