refactor: specify type for studyProgram in student registration form

This commit is contained in:
2025-10-20 19:16:48 +02:00
parent b5c336f8fb
commit 785e9493cd

View File

@@ -24,7 +24,7 @@ const form = reactive({
studentEmail: '',
altEmail: '',
phone: '',
studyProgram: null,
studyProgram: null as (string | null),
consent: false,
});