Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib/components/forms/MembershipApplicationForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
if ("email" in data) {
let mainError = (data.email as string[])[0];
emailError = mainError;
// The only server-side error that occurs for emails is that it's already used
errorMessage = "A member has already applied with that email!";
}
if ("is_student" in data) {
let mainError = (data.is_student as string[])[0];
Expand Down