Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/benchmark-body.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -384,9 +384,9 @@
<p className="label-mono text-ink-faint mb-4">
{benchmark.unit === "count"
? "Product ledger"
: "Product ledger · sorted by p50"}
: activePanel ? `Product ledger · sorted by ` : "Product ledger · sorted by p50"
</p>

Check failure on line 388 in src/components/benchmark-body.tsx

View workflow job for this annotation

GitHub Actions/ check

'}' expected.
<LedgerTable benchmark={benchmark} />
<LedgerTable benchmark={benchmark} activePanel={activePanel} />
</div>

{benchmark.unit !== "count" &&
Expand Down
Loading