refactor(frontend): Algemene linting fouten

This commit is contained in:
Tibo De Peuter 2025-03-23 12:04:54 +01:00
parent 8efce6bee0
commit dd1000c662
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
9 changed files with 26 additions and 25 deletions

View file

@ -2,15 +2,15 @@
import dwengoLogo from "../../../assets/img/dwengo-groen-zwart.svg";
import auth from "@/services/auth/auth-service.ts";
function loginAsStudent() {
function loginAsStudent(): void {
auth.loginAs("student");
}
function loginAsTeacher() {
function loginAsTeacher(): void {
auth.loginAs("teacher");
}
function performLogout() {
function performLogout(): void {
auth.logout();
}
</script>