style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-14 21:29:50 +00:00
parent 211ddaed75
commit c2bcd17759
2 changed files with 18 additions and 19 deletions

View file

@ -25,7 +25,7 @@ export class LearningPathController extends BaseController {
classId: forGroup?.classId,
});
if (dtos.length === 0) {
throw new NotFoundException('learningPathNotFound')
throw new NotFoundException("learningPathNotFound");
}
return LearningPath.fromDTO(dtos[0]);
}