Skip to content

Commit 1ccd790

Browse files
committed
Fix linter.
1 parent a8cee74 commit 1ccd790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ async function handleCrashFileRead(crashDirectory: string, crashFile: string, cr
12991299
pendingCallStack = "?\n";
13001300
}
13011301
if (pendingCallStack === "?\n") {
1302-
let pendingCallStackWithOffset: string = `?${pendingOffset}`;
1302+
const pendingCallStackWithOffset: string = `?${pendingOffset}`;
13031303
if (!containsFilteredTelemetryData(pendingCallStackWithOffset)) {
13041304
pendingCallStack = pendingCallStackWithOffset;
13051305
}

0 commit comments

Comments
 (0)