Skip to content

Commit

Permalink
added brackets to thenable
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsomers101 committed Feb 23, 2024
1 parent ce6e7ef commit 7ae028d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/generatePrototypeCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class generatePrototypeCommand {
terminalUtils.RunCommandsInExistingTerminal(term,
[`${this.manifestFile.fileUri.fsPath}`]);

vscode.workspace.fs.writeFile(this.manifestFile.fileUri, newData).then(() => this.runPrototypeCommand);
vscode.workspace.fs.writeFile(this.manifestFile.fileUri, newData).then(() => { this.runPrototypeCommand; });
}

private runPrototypeCommand()
Expand Down

0 comments on commit 7ae028d

Please sign in to comment.