react-redux-universal-hot-example icon indicating copy to clipboard operation
react-redux-universal-hot-example copied to clipboard

IE10 - Unable to get property 'store' of undefined or null reference

Open badtant opened this issue 8 years ago • 3 comments

When running the app i get "Unable to get property 'store' of undefined or null reference" in IE10. But looking at the app deployed at Heroku I don't see the error. Is it the latest version running on Heroku?

Seems to be a bug with redux async connect so I also posted here: https://github.com/Rezonans/redux-async-connect/issues/62

badtant avatar Mar 10 '16 10:03 badtant

I am also experiencing this issue.

etburke avatar Mar 15 '16 21:03 etburke

I've made a pull request for redux-async-connect to fix this... https://github.com/Rezonans/redux-async-connect/pull/64

badtant avatar Mar 16 '16 13:03 badtant

this is because of binding thing , you need to inform framework about the presence of any function before it is actually rendered that is in the constructor or componentDidMount in any of the method if you info it will work fine example:- this.verifyMe = this.verifyMe.bind(this); //verifyMe is the function

TEJAPS avatar Jun 11 '18 10:06 TEJAPS