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 8eb5640 commit 668d62fCopy full SHA for 668d62f
src/node/utils/ImportHtml.js
@@ -94,8 +94,6 @@ exports.setPadHTML = async (pad, html) => {
94
const theChangeset = builder.toString();
95
96
apiLogger.debug(`The changeset: ${theChangeset}`);
97
- await Promise.all([
98
- pad.setText('\n'),
99
- pad.appendRevision(theChangeset),
100
- ]);
+ await pad.setText('\n');
+ await pad.appendRevision(theChangeset);
101
};
0 commit comments