Devon Sams
Devon Sams
`Ingress-nginx` gives you the ability to configure an internal load balancer that is in addition to the public one (see [here](https://github.com/kubernetes/ingress-nginx/blob/main/charts/ingress-nginx/README.md#additional-internal-load-balancer)). So you end up with a single ingress nginx...
Fixes the following error which occurs when trying to nest anything within the tooltip: ``` Property 'children' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes & Readonly'. ```
[index.js](https://github.com/zo0r/react-native-push-notification/blob/master/index.js) is mixing module syntax, it's using both CJS and ESM. According to this [test case](https://github.com/webpack/webpack/blob/c181294865dca01b28e6e316636fef5f2aad4eb6/test/configCases/runtime/invalid-esm-export/index.js), mixing module syntax is not allowed in webpack. [This line of code](https://github.com/zo0r/react-native-push-notification/blob/fcf40a05175bb79fb5fdfe2ac31bb797bc5008bc/index.js#L646) should be...
Fixes https://github.com/zo0r/react-native-push-notification/issues/2276
My build system is giving me the below error, which I assume is because the file contains JSX code (which is invalid JS). Maybe there are other ways, but I...