Skip to content

Commit 4fceee8

Browse files
committed
remove irrelevant format change to clean up diff
1 parent 06eddfe commit 4fceee8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,9 @@ export let parseCompilerLogOutput = (
603603
// 10 ┆
604604
} else if (line.startsWith(" ")) {
605605
// part of the actual diagnostics message
606-
parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
607-
line.slice(2)
608-
);
606+
parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
607+
line.slice(2)
608+
);
609609
} else if (line.trim() != "") {
610610
// We'll assume that everything else is also part of the diagnostics too.
611611
// Most of these should have been indented 2 spaces; sadly, some of them

0 commit comments

Comments
 (0)