Skip to content

How to tell if validate has no errors and stop the form submit. #88

@The-Code-Monkey

Description

@The-Code-Monkey

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions