Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit cb9e9f3

Browse files
author
rsavian
committed
fix path issue
1 parent e5f3f2a commit cb9e9f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/ProviderService.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class ProviderService {
3131

3232
private static _setupHotReloading(store: ISagaStore<IStore>) {
3333
if (module.hot) {
34-
module.hot.accept('../store/rootReducer', () => {
35-
const nextReducer = require('../store/rootReducer').default; // eslint-disable-line global-require
34+
module.hot.accept('../stores/rootReducer', () => {
35+
const nextReducer = require('../stores/rootReducer').default; // eslint-disable-line global-require
3636

3737
store.replaceReducer(nextReducer);
3838
});

0 commit comments

Comments
 (0)