Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
109
rated 0 times [  113] [ 4]  / answers: 1 / hits: 57253  / 6 Years ago, wed, november 28, 2018, 12:00:00

I have disabled react devtools and redux devtools.



I've been searching for ways to deal with this problem for hours, and most of the problems are in compose while I don't change code at all.



import { createStore, applyMiddleware,compose } from 'redux';
import thunk from 'redux-thunk';
import rootReducer from './reducers';

const initialState={};

const middleware = [thunk];

const store = createStore(rootReducer,initialState,
compose(
applyMiddleware(...middleware),
window.__REDUX_DEVTOOLS_EXTENSION__&& window.__REDUX_DEVTOOLS_EXTENSION__()
)
);


export default store;


I really don't understand why this happened. I don't change anything and the last thing I do is just do git push origin master to my repository and suddenly when I compiled I got this error:



Iam Using this in my front end :



  @material-ui/core: ^3.3.1,
@material-ui/icons: ^3.0.1,
axios: ^0.18.0,
jwt-decode: ^2.2.0,
prop-types: ^15.6.2,
react: ^16.6.0,
react-dom: ^16.6.0,
react-redux: ^5.1.0,
react-router-dom: ^4.3.1,
react-scripts: 2.0.5,
react-select: ^2.1.1,
recharts: ^1.3.5,
redux: ^4.0.1,
redux-thunk: ^2.3.0,
typeface-roboto: 0.0.54


Back-end :



 dependencies: {
bcryptjs: ^2.4.3,
body-parser: ^1.18.3,
express: ^4.16.4,
mongoose: ^5.3.11,
multer: ^1.4.1,
passport: ^0.4.0,
passport-jwt: ^4.0.0,
path: ^0.12.7,
validator: ^10.9.0,
xlsx: ^0.14.1
},
devDependencies: {
concurrently: ^4.0.1,
nodemon: ^1.18.6,
},


Result Error:



Image



Redux :



Image


More From » reactjs

 Answers
7

Update your redux dev tools from 2.16.0 to 2.16.1



OR



Remove this line from your code



window.__REDUX_DEVTOOLS_EXTENSION__&& window.__REDUX_DEVTOOLS_EXTENSION__()

[#53026] Friday, November 23, 2018, 6 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
farrahsavannahl

Total Points: 418
Total Questions: 108
Total Answers: 90

Location: Bonaire
Member since Sat, May 1, 2021
3 Years ago
;