summaryrefslogtreecommitdiff
path: root/client/src/components/RsvpForm.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-07-07 08:03:32 -0700
committerMichael Hunteman <michael@huntm.net>2024-07-07 08:03:32 -0700
commitca16c7baac82bf103046800447c4cef0293ed287 (patch)
tree827ea5c80ebb2713308d6d439875dc28512f8cb2 /client/src/components/RsvpForm.tsx
parent44ab9e0ec7c16bc85decfed8a7a59273f555f858 (diff)
Update attendance radio group
Diffstat (limited to 'client/src/components/RsvpForm.tsx')
-rw-r--r--client/src/components/RsvpForm.tsx10
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>
)}