summaryrefslogtreecommitdiff
path: root/client/src/components/GuestLogin.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@mac-mini.local>2025-01-17 15:38:38 -0600
committerMichael Hunteman <michael@mac-mini.local>2025-01-17 15:38:38 -0600
commit00a9fc7b2d20eeacbd957fef47685fdfdb5d606f (patch)
treeb43974f5334f8c23d78baf369bf8e1cc78d0db12 /client/src/components/GuestLogin.tsx
parent6aaefb2fb7179428b31e4781cfaff5b6067a78e8 (diff)
Fix radio group format
Diffstat (limited to 'client/src/components/GuestLogin.tsx')
-rw-r--r--client/src/components/GuestLogin.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/client/src/components/GuestLogin.tsx b/client/src/components/GuestLogin.tsx
index c2bfeb9..c0eace1 100644
--- a/client/src/components/GuestLogin.tsx
+++ b/client/src/components/GuestLogin.tsx
@@ -84,7 +84,10 @@ function GuestLogin() {
error={!!errors.firstName}
helperText={errors.firstName?.message}
required
- {...register('firstName', { required: 'This field is required' })}
+ {...register('firstName', {
+ setValueAs: (value: string) => value.trim(),
+ required: 'This field is required',
+ })}
/>
<TextField
label="Last Name"
@@ -94,7 +97,10 @@ function GuestLogin() {
error={!!errors.lastName}
helperText={errors.lastName?.message}
required
- {...register('lastName', { required: 'This field is required' })}
+ {...register('lastName', {
+ setValueAs: (value: string) => value.trim(),
+ required: 'This field is required',
+ })}
/>
<Button type="submit" variant="contained" fullWidth sx={{ mt: 2 }}>
Log in