Skip to content

Commit 0c8885a

Browse files
committed
Only non-negligible changes
1 parent 86bf254 commit 0c8885a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/app/BenchmarkCompareViewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ function BucketTable({
403403
};
404404

405405
const significant = comparisons
406-
// .filter((c) => c.confidence !== 'LOW' && c.effectSize !== 'Negligible')
406+
.filter((c) => c.confidence !== 'LOW' && c.effectSize !== 'Negligible')
407407
.sort(
408408
(a, b) =>
409409
Math.abs(b.newMean - b.baseMean) - Math.abs(a.newMean - a.baseMean)

0 commit comments

Comments
 (0)