We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92cd23e commit b3c79b8Copy full SHA for b3c79b8
examples/wizard/index.js
@@ -15,7 +15,7 @@ const onSubmit = async values => {
15
const Error = ({ name }) => (
16
<Field
17
name={name}
18
- subscribe={{ touched: true, error: true }}
+ subscription={{ touched: true, error: true }}
19
render={({ meta: { touched, error } }) =>
20
touched && error ? <span>{error}</span> : null
21
}
0 commit comments