Skip to content

Commit

Permalink
null
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Mar 25, 2024
1 parent 86cc85b commit ed9943c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/src/SignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ export function SignUpForm() {

const data = new FormData(e.currentTarget);
const values = {
name: data.get('name').toString(),
email: data.get('email').toString(),
notes: data.get('notes').toString(),
name: data.get('name')?.toString() || '',
email: data.get('email')?.toString() || '',
notes: data.get('notes')?.toString() || '',
};

setState('pending');
Expand Down

0 comments on commit ed9943c

Please sign in to comment.