From 870ed57166b516cc29a07f1220b994cf65dec266 Mon Sep 17 00:00:00 2001 From: Joao Ramos Date: Wed, 7 Feb 2024 20:35:30 +0000 Subject: [PATCH] Swapped the grade for the level on the level display for an exam --- src/exams/Finish.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exams/Finish.tsx b/src/exams/Finish.tsx index cff00c5a..72190257 100644 --- a/src/exams/Finish.tsx +++ b/src/exams/Finish.tsx @@ -75,7 +75,7 @@ export default function Finish({user, scores, modules, isLoading, onViewResults} const [levelStr, grade] = getLevelScore(level); return (
- {grade} + {levelStr}
); }