fix
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-09-03 22:18:18 -06:00
parent 583ac2cee5
commit 2e78b6efdf

View File

@@ -33,8 +33,8 @@ const GRADES = [20, 25]
const gradeOptions = Array.from( const gradeOptions = Array.from(
{ length: GRADES[1] - GRADES[0] + 1 }, { length: GRADES[1] - GRADES[0] + 1 },
(_, i) => ({ (_, i) => ({
label: `${GRADES[0] + i}年级`, label: `${GRADES[1] - i}年级`,
value: GRADES[0] + i, value: GRADES[1] - i,
}), }),
) )