I\'m trying to fill the profile form with data from API. Unfortunately redux-form doesn\'t want to cooperate with me in this case. For some reason fields stays empty whateve
You need to add enableReinitialize: true as below.
enableReinitialize: true
let InitializeFromStateForm = reduxForm({ form: 'initializeFromState', enableReinitialize : true // this is needed!! })(UserEdit)
If your initialValues prop gets updated, your form will update too.