style: fix linting issues met Prettier
This commit is contained in:
parent
d65bdd4fb4
commit
fe1a6b7eea
8 changed files with 14 additions and 11 deletions
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue