A form field has many asynchronous check rules, since a composited api can check these rules one time by return different result, i do not want to fire so many api request.
Use form.setFields
Syntax
Function({ fieldName: { value: any, errors: Error } })
Example from here -
this.props.form.setFields({
user: {
value: values.user,
errors: [new Error('forbid ha')],
},
});