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)' + ) + )} )}