We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0def73d commit dac6d50Copy full SHA for dac6d50
packages/react-native/Libraries/Core/setUpErrorHandling.js
@@ -21,13 +21,7 @@ ExceptionsManager.installConsoleErrorReporter();
21
if (!global.__fbDisableExceptionsManager) {
22
const handleError = (e: mixed, isFatal: boolean) => {
23
try {
24
- // TODO(T196834299): We should really use a c++ turbomodule for this
25
- if (
26
- !global.RN$handleException ||
27
- !global.RN$handleException(e, isFatal)
28
- ) {
29
ExceptionsManager.handleException(e, isFatal);
30
- }
31
} catch (ee) {
32
console.log('Failed to print error: ', ee.message);
33
throw e;
0 commit comments