From bb7417ffbdd8aee5f693a58398d0b513f8d5744f Mon Sep 17 00:00:00 2001 From: Keshav Gupta Date: Thu, 25 Jan 2024 19:42:14 +0530 Subject: [PATCH] fix:edit the nameon sign up page if name is blank (#4216) Co-authored-by: keshav --- frontend/src/pages/SignUp/SignUp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/SignUp/SignUp.tsx b/frontend/src/pages/SignUp/SignUp.tsx index 836b9f726f..35cca11603 100644 --- a/frontend/src/pages/SignUp/SignUp.tsx +++ b/frontend/src/pages/SignUp/SignUp.tsx @@ -344,7 +344,7 @@ function SignUp({ version }: SignUpProps): JSX.Element { placeholder={t('placeholder_firstname')} required id="signupFirstName" - disabled={isDetailsDisable} + disabled={isDetailsDisable && form.getFieldValue('firstName')} />