Skip to content

Commit 0d4207d

Browse files
committed
Run lint-fix
1 parent c66bbf7 commit 0d4207d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/commands/compile.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,11 @@ async function compile(docs: CurrentFile[], flags?: string): Promise<any> {
230230
})
231231
.catch((error: Error) => {
232232
if (!config("suppressCompileErrorMessages")) {
233-
vscode.window.showErrorMessage("Compilation failed. Check output channel for details.", "Dismiss").then((data) => {
234-
outputChannel.show(true);
235-
});
233+
vscode.window
234+
.showErrorMessage("Compilation failed. Check output channel for details.", "Dismiss")
235+
.then((data) => {
236+
outputChannel.show(true);
237+
});
236238
}
237239
// Even when compile failed we should still fetch server changes
238240
return docs;

0 commit comments

Comments
 (0)