fix:edit the nameon sign up page if name is blank (#4216)

Co-authored-by: keshav <keshav.gupta@jarvis.consulting>
This commit is contained in:
Keshav Gupta 2024-01-25 19:42:14 +05:30 committed by GitHub
parent 085cf34a49
commit bb7417ffbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -344,7 +344,7 @@ function SignUp({ version }: SignUpProps): JSX.Element {
placeholder={t('placeholder_firstname')}
required
id="signupFirstName"
disabled={isDetailsDisable}
disabled={isDetailsDisable && form.getFieldValue('firstName')}
/>
</FormContainer.Item>
</div>