From 68467c2570af2743f5646a9b84142c922254cb5b Mon Sep 17 00:00:00 2001 From: miguel Date: Mon, 30 Jun 2025 11:21:43 -0600 Subject: [PATCH 1/2] fix: correct placeholder logic for cuenta input based on validation type --- src/containers/formulario/formulario-registro.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/containers/formulario/formulario-registro.tsx b/src/containers/formulario/formulario-registro.tsx index f4f91d6..134a060 100644 --- a/src/containers/formulario/formulario-registro.tsx +++ b/src/containers/formulario/formulario-registro.tsx @@ -361,9 +361,9 @@ export default function FormularioRegistro({ placeholder={ preguntaCuenta.validacion === 'cuenta_alumno' ? 'Ingrese su cuenta' - : preguntaComunidad?.validacion === 'rfc' + : preguntaCuenta?.validacion === 'rfc' ? 'Ingrese su RFC sin homoclave' - : preguntaComunidad?.validacion === 'cuenta_trabajador' + : preguntaCuenta?.validacion === 'cuenta_trabajador' ? 'Ingrese su numero de trabajador' : 'Ingrese su ' + preguntaCuenta.pregunta } From 60de9fb32413afaffe108d28511f9b755c3c3378 Mon Sep 17 00:00:00 2001 From: miguel Date: Mon, 30 Jun 2025 11:23:40 -0600 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20update=20registration=20button=20tex?= =?UTF-8?q?t=20from=20'Reg=C3=ADstrate'=20to=20'Registro'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/evento-card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/evento-card.tsx b/src/components/evento-card.tsx index 707e134..6ea130d 100644 --- a/src/components/evento-card.tsx +++ b/src/components/evento-card.tsx @@ -94,7 +94,7 @@ export default function EventoCard({ }`} className="btn mt-2 w-100 btn-outline-primary" > - RegĂ­strate + Registro )}