diff --git a/src/app/(mobile-ui)/add-money/[country]/bank/page.tsx b/src/app/(mobile-ui)/add-money/[country]/bank/page.tsx index 59966a46f..084d8daed 100644 --- a/src/app/(mobile-ui)/add-money/[country]/bank/page.tsx +++ b/src/app/(mobile-ui)/add-money/[country]/bank/page.tsx @@ -98,14 +98,9 @@ export default function OnrampBankPage() { if (step === 'loading') { const currentKycStatus = liveKycStatus || user?.user.kycStatus const isUserKycVerified = currentKycStatus === 'approved' - const hasUserDetails = user?.user.fullName && user?.user.email if (!isUserKycVerified) { - if (hasUserDetails) { - setStep('kyc') - } else { - setStep('collectUserDetails') - } + setStep('collectUserDetails') } else { setStep('inputAmount') if (amountFromContext && !rawTokenAmount) { diff --git a/src/components/AddMoney/UserDetailsForm.tsx b/src/components/AddMoney/UserDetailsForm.tsx index 033524bdc..a1ace78f3 100644 --- a/src/components/AddMoney/UserDetailsForm.tsx +++ b/src/components/AddMoney/UserDetailsForm.tsx @@ -54,7 +54,6 @@ export const UserDetailsForm = forwardRef<{ handleSubmit: () => void }, UserDeta rules: any, type: string = 'text' ) => { - const isDisabled = name === 'email' ? !!initialData?.email : !!initialData?.firstName // also check for lastname implicitly with firstname return (