Skip to content

Commit a272a5d

Browse files
committed
fixup: add missing await (only improves UI)
1 parent 82a00b6 commit a272a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/compare-performance/compare-performance-view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class ComparePerformanceView extends AbstractWebview<
6565
const bytes = statSync(log).size;
6666
return withProgress(
6767
async (progress) =>
68-
scanLog(log, new PerformanceOverviewScanner(), progress),
68+
await scanLog(log, new PerformanceOverviewScanner(), progress),
6969

7070
{
7171
title: `Scanning evaluator log ${logDescription} (${(bytes / 1024 / 1024).toFixed(1)} MB)`,

0 commit comments

Comments
 (0)