Skip to content

Commit

Permalink
fixup: add missing await (only improves UI)
Browse files Browse the repository at this point in the history
  • Loading branch information
esbena committed Nov 15, 2024
1 parent 82a00b6 commit a272a5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class ComparePerformanceView extends AbstractWebview<
const bytes = statSync(log).size;
return withProgress(
async (progress) =>
scanLog(log, new PerformanceOverviewScanner(), progress),
await scanLog(log, new PerformanceOverviewScanner(), progress),

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

0 comments on commit a272a5d

Please sign in to comment.