You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TL;DR - the error information forwarded through selector is not sufficient. How can we get the full error?
We are currently testing our app on IE11 and noted a regression that can be traced back to a dependency upgrade.
Connect.prototype.render = function render() {
var selector = this.selector;
selector.shouldComponentUpdate = false;
if (selector.error) {
throw selector.error; // error is thrown.
} else {
return Object(react__WEBPACK_IMPORTED_MODULE_2__["createElement"])(WrappedComponent, this.addExtraProps(selector.props));
}
};
The only error we get is the following
No line number or any additional diagnostic information is passed.
The selector object only has the key error populated with a string that does not give us any additional information.
We were digging for the last few hours with no success, also tried downgrading the react dependencies but were not able to fix it.
TL;DR - the error information forwarded through
selector
is not sufficient. How can we get the full error?We are currently testing our app on IE11 and noted a regression that can be traced back to a dependency upgrade.
The only error we get is the following

No line number or any additional diagnostic information is passed.
The
selector
object only has the keyerror
populated with a string that does not give us any additional information.We were digging for the last few hours with no success, also tried downgrading the react dependencies but were not able to fix it.
We use have the following deps:
The text was updated successfully, but these errors were encountered: