Michael Borde

Results 6 comments of Michael Borde

For a mobile app on GA you have to send a "screenview" hit type. The (simplified) workaround i use: ``` javascript $rootScope.$on('$stateChangeSuccess', (event, state) => { Analytics.send('screenview', { screenName: state.name...

The `timingConfig` hack won't work in `react-native-tab-view` v3 anymore. See discussion here: https://github.com/satya164/react-native-tab-view/issues/1137

I don't think you can link a `password` provider directly. You could just call `updateUser` with the email you want (and the password when you know it). That's odd because...

If you have a direct access to `JsonRpcProvider` construction you can pass an instance of [ConnectionInfo](https://docs.ethers.org/v5/api/utils/web/#ConnectionInfo). Then you can either use `skipFetchSetup` to avoid setting `referrer` to `"client"` or provide...