Open Christelle-Couchoux opened 9 months ago
Redux DevTools isn't working because the variable used is deprecated. demo / src / wrapper.jsx l. 49-50
Replace
!isProduction && window.devToolsExtension ? window.devToolsExtension({
with
!isProduction && window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() ? window.__REDUX_DEVTOOLS_EXTENSION__({
Redux DevTools isn't working because the variable used is deprecated. demo / src / wrapper.jsx l. 49-50
Replace
with