style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-03-11 05:14:04 +00:00
parent a69e2625af
commit bdbfe380be
4 changed files with 5 additions and 5 deletions

View file

@ -20,9 +20,9 @@ export async function getLastSubmissionForCustomizationTarget(node: LearningPath
};
if (pathFor.type === 'group') {
return await submissionRepo.findMostRecentSubmissionForGroup(learningObjectId, pathFor.group);
} else {
}
return await submissionRepo.findMostRecentSubmissionForStudent(learningObjectId, pathFor.student);
}
}