We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb4d7f commit 5f2d830Copy full SHA for 5f2d830
1 file changed
src/app/redux/configureStore.ts
@@ -30,7 +30,7 @@ export function configureStore(history: History, initialState?: IStore): Redux.S
30
31
if (appConfig.env === "development" && (module as any).hot) {
32
(module as any).hot.accept("./rootReducer", () => {
33
- store.replaceReducer((require("./rootReducer")));
+ store.replaceReducer((require("./rootReducer").default));
34
});
35
}
36
0 commit comments