style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-03-11 11:18:55 +00:00
parent 67f8b3e157
commit 78267a2416

View file

@ -26,9 +26,9 @@ export async function personalizedForStudent(username: string): Promise<Personal
type: "student",
student: student
}
} else {
}
return undefined;
}
}
/**
@ -55,9 +55,9 @@ export async function personalizedForGroup(classId: string, assignmentNumber: nu
type: "group",
group: group
}
} else {
}
return undefined;
}
}
/**