We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8996551 commit ceee2dfCopy full SHA for ceee2df
packages/redux-dynamic-modules-core/src/Managers/ModuleManager.ts
@@ -73,9 +73,6 @@ export function getModuleManager<State>(
73
_reducerManager.add(key, reducerMap[key]);
74
}
75
76
-
77
- /* Fire an action so that the newly added reducers can seed their initial state */
78
- _seedReducers();
79
};
80
81
const _removeReducers = (
@@ -122,6 +119,9 @@ export function getModuleManager<State>(
122
119
123
120
});
124
121
+ /* Fire an action so that the newly added reducers can seed their initial state */
+ _seedReducers();
+
125
// add the sagas and dispatch actions at the end so all the reducers are registered
126
justAddedModules.forEach(module => {
127
// Let the extensions know we added a module
0 commit comments