mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix bug
This commit is contained in:
parent
7e10f53b95
commit
96dabbd4f5
|
@ -595,10 +595,10 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
|
|||
return next(reducer_, initialState_);
|
||||
}
|
||||
|
||||
return configureStore(next, monitor.reducer, {
|
||||
store = stores[instanceId] = configureStore(next, monitor.reducer, {
|
||||
...config,
|
||||
maxAge: getMaxAge as any,
|
||||
})(reducer_, initialState_);
|
||||
})(reducer_, initialState_) as any;
|
||||
|
||||
if (isInIframe()) setTimeout(init, 3000);
|
||||
else init();
|
||||
|
|
Loading…
Reference in New Issue
Block a user