diff options
author | Michael Hunteman <michael@huntm.net> | 2024-07-07 08:03:32 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-07-07 08:03:32 -0700 |
commit | ca16c7baac82bf103046800447c4cef0293ed287 (patch) | |
tree | 827ea5c80ebb2713308d6d439875dc28512f8cb2 /client | |
parent | 44ab9e0ec7c16bc85decfed8a7a59273f555f858 (diff) |
Update attendance radio group
Diffstat (limited to 'client')
-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> )} |