@@ -208,13 +208,6 @@
return;
}
- // Validar que no sea un PIN muy obvio
- const obviousPins = ['1234', '0000', '1111', '2222', '3333', '4444', '5555', '6666', '7777', '8888', '9999'];
- if (obviousPins.includes(pin)) {
- showError('Por seguridad, elige un PIN menos obvio');
- pinInput.focus();
- return;
- }
// Deshabilitar el botón mientras se procesa
submitBtn.disabled = true;