Desmond McNamee
Desmond McNamee
Still an issue in Firefox 88 😿
@hudsonhyunlim As a workaround I conditionally import and init amplitude only on the browser side like this: ``` let amplitude: any; export const initAmplitude = () => { if (process.browser)...
@MohamedJakkariya `window is not defined` usually means the code is trying to access the browser window on the server. You should wrap your code like... ``` if (process.browser) { useEffect(()...
Looks like this isn't a bug with `react-native-image-picker`. Under the hood it's using Apple's `PHPicker` and as explained [here](https://developer.apple.com/forums/thread/652819): "the picker runs out of process, so your app will only...
@itinance I think you can close this issue. Looks like it's been fixed.