Browse Source

validate mail at login test

amenpunk 3 năm trước cách đây
mục cha
commit
33130f9ab8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Pages/Login.jsx

+ 1 - 1
src/Pages/Login.jsx

@@ -24,7 +24,7 @@ import { Service } from '../Utils/HTTP.js'
 const LoginSchema = Yup.object().shape({
     email : Yup
     .string()
-    // .email('El correo debe ser válido')
+    .email('El correo debe ser válido')
     .required('El correo o usuario es requerido'),
 
     password : Yup