ux: dynamic register button text based on plan
This commit is contained in:
parent
f2d3971059
commit
f68617881a
1 changed files with 5 additions and 1 deletions
|
|
@ -351,7 +351,11 @@ const RegistrationModal: React.FC<RegistrationModalProps> = ({
|
|||
</>
|
||||
) : (
|
||||
<>
|
||||
{isCompletingProfile ? t.auth.btnSave : (activeMode === 'login' ? t.auth.btnLogin : t.auth.btnRegister)}
|
||||
{isCompletingProfile ? t.auth.btnSave : (
|
||||
activeMode === 'login' ? t.auth.btnLogin : (
|
||||
plan === 'monthly' ? 'Continuar para Pagamento' : 'Criar Conta (5 Análises Grátis)'
|
||||
)
|
||||
)}
|
||||
<ArrowRight size={20} />
|
||||
</>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue