Form input using Redux Form not updating. I was having the same problem and my mistake was very simple. Here is an example:
1 2 3 4 5 6 | import { combineReducers } from 'redux'; import { reducer as forms } from 'redux-form'; import otherReducer from './otherReducer'; export default combineReducers({ otherReducer, forms }); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.