From f68617881a162e12f341cfb5060b71bfc30607ec Mon Sep 17 00:00:00 2001 From: Marcio Bevervanso Date: Mon, 13 Apr 2026 19:12:13 -0300 Subject: [PATCH] ux: dynamic register button text based on plan --- src/components/modals/RegistrationModal.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/modals/RegistrationModal.tsx b/src/components/modals/RegistrationModal.tsx index bf9fe90..682c22b 100644 --- a/src/components/modals/RegistrationModal.tsx +++ b/src/components/modals/RegistrationModal.tsx @@ -351,7 +351,11 @@ const RegistrationModal: React.FC = ({ ) : ( <> - {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)' + ) + )} )}