style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-03-21 22:26:24 +00:00
parent 52364d717c
commit fc5a40ba40
5 changed files with 8 additions and 8 deletions

View file

@ -58,7 +58,7 @@ export class QuestionRepository extends DwengoEntityRepository<Question> {
public findAllByAuthor(author: Student): Promise<Question[]> {
return this.findAll({
where: { author },
orderBy: { timestamp: 'DESC' }, // new to old
orderBy: { timestamp: 'DESC' }, // New to old
});
}