Skip to content

Commit 5cf167c

Browse files
committed
fix: email field with signup
1 parent 1429b13 commit 5cf167c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/components/AuthorizerSignup.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ export const AuthorizerSignup: FC<{
209209
placeholder="eg. hello@world.com / +919999999999"
210210
type="text"
211211
value={formData.email_or_phone_number || ''}
212-
onChange={(e) => onInputChange('email', e.target.value)}
212+
onChange={(e) =>
213+
onInputChange('email_or_phone_number', e.target.value)
214+
}
213215
/>
214216
{errorData.email_or_phone_number && (
215217
<div className={styles['form-input-error']}>

0 commit comments

Comments
 (0)