-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async validation disables next button on next step #431
Comments
The error occurred after updating React Final Form to 6.0.0 https://github.com/final-form/react-final-form/releases?after=v6.1.0 |
Current workaround until a fix in FF is released: import { useEffect } from 'react';
import PropTypes from 'prop-types';
import useFormApi from '@data-driven-forms/react-form-renderer/dist/cjs/use-form-api';
const ValidatorReset = ({ name }) => {
const formOptions = useFormApi();
useEffect(() => {
setTimeout(() => formOptions.change(name, '1'));
return () => formOptions.change(name, '');
}, []);
return null;
};
ValidatorReset.propTypes = {
name: PropTypes.string.isRequired
};
export default ValidatorReset; This component will set a value to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Scope: PF4 mapper
Description
Validating is set to true
Schema
cc @Hyperkid123
The text was updated successfully, but these errors were encountered: