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