feat: add 1% low FPS field to benchmark submission wizard

This commit is contained in:
2026-04-28 22:43:46 +08:00
parent 943fcff12b
commit 4d759160db
5 changed files with 23 additions and 1 deletions
+1
View File
@@ -95,6 +95,7 @@ export function ReviewStep({
<div className="rounded-lg border border-border bg-text/5 p-4">
<SectionHeader icon={Gauge} label="Performance" />
<SummaryRow label="FPS Average" value={formatNumber(performance.fpsAvg)} />
<SummaryRow label="1% Low FPS" value={formatNumber(performance.fpsOnePercentLow)} />
<SummaryRow label="FPS Low" value={formatNumber(performance.fpsLow)} />
<SummaryRow label="FPS High" value={formatNumber(performance.fpsHigh)} />
<SummaryRow label="Load Time SSD" value={formatNumber(performance.loadTimeSsd)} />