fix: add missing semicolon in internship registration navigation

This commit is contained in:
2025-10-31 14:21:34 +01:00
parent fda5bc2473
commit e0335441fe

View File

@@ -24,7 +24,7 @@ async function handleInternshipRegistration(internship: NewInternship) {
body: internship
});
navigateTo("/dashboard/student")
navigateTo("/dashboard/student");
} catch (e: any) {
error.value = e.data?.message as string;
} finally {