Complete Your Profile
Set up your profile and address to get started
{active === 0 && (
<>
Personal Information
>
)}
{active === 1 && (
<>
Identity & Contact
>
)}
}
onClick={() => {
dispatch(logout());
navigate('/login');
}}
>
Sign out
{active > 0 && (
}
onClick={() => setActive((c) => c - 1)}
>
Previous
)}
{active < STEPS.length - 1 ? (
} onClick={onNext}>
Next Step
) : (
}
onClick={onSubmitAddress}
loading={submitting}
>
Complete Setup
)}