ux: dynamic register button text based on plan

This commit is contained in:
Marcio Bevervanso 2026-04-13 19:12:13 -03:00
parent f2d3971059
commit f68617881a

View file

@ -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} /> <ArrowRight size={20} />
</> </>
)} )}