diff options
Diffstat (limited to 'client/src/components')
-rw-r--r-- | client/src/components/RsvpForm.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/components/RsvpForm.tsx b/client/src/components/RsvpForm.tsx index 06669e3..8596e29 100644 --- a/client/src/components/RsvpForm.tsx +++ b/client/src/components/RsvpForm.tsx @@ -93,7 +93,7 @@ function RsvpForm() { <FormControl> <div style={{ display: 'flex', alignItems: 'center' }}> <FormLabel sx={{ mr: 2 }} error={!!errors.attendance} required> - Will you attend? + Attendance </FormLabel> <Controller name="attendance" @@ -102,14 +102,14 @@ function RsvpForm() { render={({ field }) => ( <RadioGroup {...field} row> <FormControlLabel - value="yes" + value="accept" control={<Radio />} - label="Yes" + label="Accept" /> <FormControlLabel - value="no" + value="decline" control={<Radio />} - label="No" + label="Decline" /> </RadioGroup> )} |