Geraint White

Results 85 comments of Geraint White

Hi, I'm not the maintainer of this repo. You can manually make the changes and use [patch-package](https://www.npmjs.com/package/patch-package) to preserve them.

I would be willing to take over maintainership if @bkdev98 will allow it.

This should be fixed by my PR https://github.com/bkdev98/react-native-incoming-call/pull/34

I am seeing the same error on an older Chromebook (Chrome 76 - can no longer be updated).

It turns out optional chaining is not supported in Chrome 76 so websites using it without transpiling no longer work on these old devices that can't be updated :-(

This didn't actually fix the issue because `"react-redux": "^7.0.0"` is in the dependencies of `react-native-offline`, thus forcing this version to be included and conflicting with any other versions included by...

> I would recommend just suppressing it where it occurs. It is safe to do so because error suppressions using the `method-unbinding` code will not catch any errors other than...

> There is no way to disable it globally (nor can there be, it is required to safely type `this` in general). What are you using for your unit test...

This is now the recommended way to do it: ```js // metro.config.js module.exports = { transformer: { minifierPath: require.resolve('metro-minify-terser') } } ```