We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96eda5 commit ba6294eCopy full SHA for ba6294e
packages/core/src/prompts/prompt.ts
@@ -206,7 +206,8 @@ export default class Prompt {
206
}
207
208
private restoreCursor() {
209
- const lines = wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1;
+ const lines =
210
+ wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1;
211
this.output.write(cursor.move(-999, lines * -1));
212
213
0 commit comments