style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-03-22 12:52:47 +00:00
parent d65bdd4fb4
commit fe1a6b7eea
8 changed files with 14 additions and 11 deletions

View file

@ -16,7 +16,7 @@ export async function getAllStudents(full: boolean): Promise<StudentDTO[] | stri
return students.map(mapToStudentDTO);
}
return students.map(student => student.username);
return students.map((student) => student.username);
}
export async function getStudent(username: string): Promise<StudentDTO | null> {