Skip to content

Commit 00525a0

Browse files
committed
fix: burst heatmap not being useful in words 10 mode
1 parent 71fc96d commit 00525a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/ts/test/test-ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,7 @@ export async function applyBurstHeatmap(): Promise<void> {
13431343
let burstlist = [...TestInput.burstHistory];
13441344

13451345
burstlist = burstlist.filter((x) => x !== Infinity);
1346-
burstlist = burstlist.filter((x) => x < 350);
1346+
burstlist = burstlist.filter((x) => x < 500);
13471347

13481348
const typingSpeedUnit = getTypingSpeedUnit(Config.typingSpeedUnit);
13491349
burstlist.forEach((burst, index) => {

0 commit comments

Comments
 (0)