Swapped the grade for the level on the level display for an exam

This commit is contained in:
Joao Ramos
2024-02-07 20:35:30 +00:00
parent 00f6aaf058
commit 870ed57166

View File

@@ -75,7 +75,7 @@ export default function Finish({user, scores, modules, isLoading, onViewResults}
const [levelStr, grade] = getLevelScore(level); const [levelStr, grade] = getLevelScore(level);
return ( return (
<div className="flex flex-col items-center justify-center gap-1"> <div className="flex flex-col items-center justify-center gap-1">
<span className="text-xl font-bold">{grade}</span> <span className="text-xl font-bold">{levelStr}</span>
</div> </div>
); );
} }