I've got this error after update @react-material/core, and I don't know how to resolve this.
I tried to update react-redux and redux-thunk libraries with no success.
This is part of my store file:
const store = isDevMode
? createStore<ApplicationState>(
rootReducer,
initialState,
composeEnhancers(applyMiddleware(...middleware)),
)
: createStore<ApplicationState>(
rootReducer,
initialState,
applyMiddleware(...middleware),
);
This is the error:
I'm just trying to resolve this to generate a new version. Any ideas?
Thanks!