Skip to content

Commit

Permalink
fixed child age
Browse files Browse the repository at this point in the history
  • Loading branch information
amykapernick committed Feb 12, 2024
1 parent 6d8e6f8 commit e4b85aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/parts/rsvpForm/child/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const Child = (person: ChildType) =>
{status && <>
<input type="hidden" name={`child_${ id }`} value="true" />
<span><label htmlFor={`age_${ id }`}>Age</label>
<input type="text" name={`age_${ id }`} id={`age_${ id }`} defaultValue={age} required /></span>
<input type="text" name={`age_${ id }`} id={`age_${ id }`} defaultValue={age || ""} required /></span>

<span className={styles.long}>
<label htmlFor={`dietary_${ id }`}>Dietary requirements</label>
Expand Down

0 comments on commit e4b85aa

Please sign in to comment.