WA-232 Sending back validating form prop to stepper

This commit is contained in:
apanizo 2018-07-25 11:10:36 +02:00
parent fa857fc21a
commit 16674b79a6
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const GnoForm = ({
render={({ handleSubmit, ...rest }) => (
<form onSubmit={handleSubmit} style={stylesBasedOn(padding)}>
{render(rest)}
{children(rest.submitting, rest.submitSucceeded)}
{children(rest.submitting, rest.validating)}
</form>
)}
/>