Missed some console.logs

This commit is contained in:
Carlos Mesquita
2024-08-22 22:19:32 +01:00
parent 6dbc2f5ed2
commit b4b078c8c9

View File

@@ -349,8 +349,6 @@ export default function ExamPage({ page }: Props) {
const solutionExams = solutions.map((x) => x.exam);
let newSolutions = [...solutions];
console.log("ON finish CALLEDDDDDDDDDDDDDDDDDDDDDDDDDDDD");
console.log(newSolutions);
if (exam && !solutionExams.includes(exam.id)) return;
@@ -481,7 +479,6 @@ export default function ExamPage({ page }: Props) {
const indexB = exerciseOrderMap.get(b.exercise) ?? Infinity;
return indexA - indexB;
});
console.log(orderedSolutions);
setUserSolutions(orderedSolutions);
} else {