Skip to content

Commit 8209965

Browse files
committed
fix: describe validation gates accurately
1 parent 0e77a59 commit 8209965

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/pages/leaderboard/components/RankingLists.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ function ValidationBadge({ item }: { item: RankingItem }) {
133133
? ` Checked ${new Date(item.validation_checked_at).toLocaleString()}.`
134134
: "";
135135
const tooltip = fullyValidated
136-
? `All ${passed}/${total} training shapes passed the convergence, numerical, fallback, and speed gates.${speedup}${contract}${checked}`
136+
? `All ${passed}/${total} training shapes passed the convergence, numerical, and speed gates.${speedup}${contract}${checked}`
137137
: failed
138138
? `The validation job failed before it could complete.${contract}${checked}`
139-
: `${passed}/${total} training shapes passed the convergence, numerical, fallback, and speed gates.${speedup}${contract}${checked}`;
139+
: `${passed}/${total} training shapes passed the convergence, numerical, and speed gates.${speedup}${contract}${checked}`;
140140

141141
return (
142142
<Tooltip title={tooltip}>

0 commit comments

Comments
 (0)