fix: lint

This commit is contained in:
Gabriellvl 2025-05-14 11:14:41 +02:00
parent acac6402d7
commit 964eaf928e
3 changed files with 3 additions and 4 deletions

View file

@ -81,7 +81,7 @@
// The code a student sends in to join a class needs to be formatted as v4 to be valid
// These rules are used to display a message to the user if they use a code that has an invalid format
function codeRegex(value: string){
function codeRegex(value: string): boolean {
return /^[a-zA-Z0-9]{6}$/.test(value)
}