Commit f9a2f4c9 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se aplicaron los cambios en el manejo de errores en el componente

parent b991c628
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ export const SignUpForm = () => {
            value={value}
            onChangeText={onChange}
            onBlur={onBlur}
            errors={errors.email?.message as string}
            errors={errors.name?.message as string}
          />
        )}
        rules={{
@@ -52,7 +52,7 @@ export const SignUpForm = () => {
            value={value}
            onChangeText={onChange}
            onBlur={onBlur}
            errors={errors.email?.message as string}
            errors={errors.lastName?.message as string}
          />
        )}
        rules={{
@@ -113,7 +113,7 @@ export const SignUpForm = () => {
            value={value}
            onChangeText={onChange}
            onBlur={onBlur}
            errors={errors.password?.message as string}
            errors={errors.confirmPassword?.message as string}
          />
        )}
        rules={{ required: "Confirm password is required" }}