We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
const submit = (values, dispatch) => { const promise = new Promise((resolve) => { resolve(); }); console.warn(promise); };
I have that as my form submit how do i work out if any of these have errored
`validate: (values) => { const errors = {};
if (values.test === 0) { errors.test = "test erroring" } return errors;
};`
i just want to do it as its a form that gets a specific form based on the fields here and i need them all to be able to submit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
const submit = (values, dispatch) => { const promise = new Promise((resolve) => { resolve(); }); console.warn(promise); };
I have that as my form submit how do i work out if any of these have errored
`validate: (values) => {
const errors = {};
};`
i just want to do it as its a form that gets a specific form based on the fields here and i need them all to be able to submit
The text was updated successfully, but these errors were encountered: