@Deividas,
You were right, it's working ! My mistake was I added an validate to the second form, so only the first one was really created.
It's make me think about validation ...
function submitForms() {
dispatch(submit('FirstOne')) // isn't validate
dispatch(submit('secondOne')) // is validate
dispatch(submit('thirdOne')) // is validate
}
<Button type="button" onClick={ submitForms } />
As you can see, if the firstOne validation is not ok, it will dispatch the second and third form if their own validation is ok.
All my form are "connected", it's like All submit or nothing.
Is it possible to acces 'errors' value or valation inside my sumbit function and do some conditionals things to handle this behavior ?
Anyway, thanks for your help :)