Skip to content

Commit

Permalink
Fix email being required in schema validation
Browse files Browse the repository at this point in the history
  • Loading branch information
PurkkaKoodari authored Jul 26, 2024
1 parent b84c46e commit 4eb7b1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const editableSignupAttributes = Type.Object({
{ description: 'Last name of the attendee. Null if not set yet.' },
),
email: Nullable(
Type.String({ format: 'email' }),
Type.String(),
{ description: 'Email of the attendee. Null if not set yet.' },
),
namePublic,
Expand Down

0 comments on commit 4eb7b1f

Please sign in to comment.