Only hooked up the section state had forgot to plugin into Header's isEvaluationEnabled

This commit is contained in:
Carlos-Mesquita
2024-11-12 15:10:23 +00:00
parent 49c63544a1
commit 311036fe86
17 changed files with 16 additions and 23 deletions

View File

@@ -172,7 +172,6 @@ const reorderSection = (exercises: Exercise[], startId: number): { exercises: Ex
currentId += 1;
return exercise;
default:
console.log("HERE IT IS");
return exercise;
}
});
@@ -188,7 +187,6 @@ const reorderModule = (moduleState: ModuleState) => {
let currentId = 1;
let reorderedSections = moduleState.sections.map(section => {
let currentSection = section.state as ReadingPart | ListeningPart | LevelPart;
console.log(currentSection.exercises);
let result = reorderSection(currentSection.exercises, currentId);
currentId = result.lastId;
return {