bug report
What is the current behavior?
<Field
name={name}
subscription={{
submitError: true,
modifiedSinceLastSubmit: true,
}}
render={() => {...}}
/>
interface FieldSubscription {
... ;
modifiedSinceLastSubmit?: false;
... ;
}
What is the expected behavior?
interface FieldSubscription {
... ;
modifiedSinceLastSubmit?: boolean;
... ;
}
What's your environment?
"final-form": "^4.20.6",
"react-final-form": "^6.5.8",
Other information
interface from final-form
bug report
What is the current behavior?
What is the expected behavior?
What's your environment?
Other information
interface from final-form