From 0f03ad4a6baeb3574f66314e61c42cee1a582fb9 Mon Sep 17 00:00:00 2001 From: Adithya Krishna Date: Fri, 1 Mar 2024 19:05:16 +0530 Subject: [PATCH] chore: updated wordings for claimed ursers Signed-off-by: Adithya Krishna --- .../settings/profile/claim-profile-alert-dialog.tsx | 7 ++++--- apps/web/src/components/forms/v2/signup.tsx | 3 +-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/web/src/app/(dashboard)/settings/profile/claim-profile-alert-dialog.tsx b/apps/web/src/app/(dashboard)/settings/profile/claim-profile-alert-dialog.tsx index 827ea1cbe..6cc0dc0a4 100644 --- a/apps/web/src/app/(dashboard)/settings/profile/claim-profile-alert-dialog.tsx +++ b/apps/web/src/app/(dashboard)/settings/profile/claim-profile-alert-dialog.tsx @@ -27,10 +27,11 @@ export const ClaimProfileAlertDialog = ({ className, user }: ClaimProfileAlertDi variant="neutral" >
- Claim your profile + {user.url ? 'Update your profile' : 'Claim your profile'} - Profiles are coming soon! Claim your profile username now to reserve your corner of the - signing revolution. + {user.url + ? 'Profiles are coming soon! Update your profile username to reserve your corner of the signing revolution.' + : 'Profiles are coming soon! Claim your profile username now to reserve your corner of the signing revolution.'}
diff --git a/apps/web/src/components/forms/v2/signup.tsx b/apps/web/src/components/forms/v2/signup.tsx index 713bde4b4..4afc44ca7 100644 --- a/apps/web/src/components/forms/v2/signup.tsx +++ b/apps/web/src/components/forms/v2/signup.tsx @@ -421,8 +421,7 @@ export const SignUpFormV2 = ({ size="lg" variant="secondary" className="flex-1" - disabled={step === 'BASIC_DETAILS'} - loading={form.formState.isSubmitting} + disabled={step === 'BASIC_DETAILS' || form.formState.isSubmitting} onClick={() => setStep('BASIC_DETAILS')} > Back