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 880ca6e commit b29adb9Copy full SHA for b29adb9
src/AsyncMacroCommand.ts
@@ -140,7 +140,9 @@ export class AsyncMacroCommand
140
commandInstance instanceof AsyncCommand;
141
142
if (isAsync) {
143
- (commandInstance as IAsyncCommand).setOnComplete(() => this.nextCommand());
+ (commandInstance as IAsyncCommand).setOnComplete(() =>
144
+ this.nextCommand(),
145
+ );
146
}
147
commandInstance.initializeNotifier(this.multitonKey);
148
if (this.note) commandInstance.execute(this.note);
0 commit comments