We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The library is catching the JS errors, but particularly "ReferenceError: variable is not defined" doesn't seem to capture it.
I forced this error by misspelling a variable name and I get this in the console:
<DoorCard ref={(ref) => this.doorsRefs = {...this.doorsRefs, [`door-${item.id}`]: ref}} door={itemm} // instead of item ...
My code for the exceptions is pretty simple:
const jsExceptionHandler = (error, isFatal) => { console.log("ExceptionsHandler", error, isFatal); }; setJSExceptionHandler(jsExceptionHandler, true);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The library is catching the JS errors, but particularly "ReferenceError: variable is not defined" doesn't seem to capture it.
I forced this error by misspelling a variable name and I get this in the console:
My code for the exceptions is pretty simple:
The text was updated successfully, but these errors were encountered: