Dom DiCicco

Results 7 comments of Dom DiCicco

Fix in the meantime (if you're using yarn) by using `resolutions`. in package.json ``` { ... devDependencies: { ... "rn-host-detect": "1.1.5" }, "resolutions": { "remote-redux-devtools/rn-host-detect": "1.1.5" }, } ```

DUPLICATE https://github.com/joeferraro/react-native-cookies/issues/15

And if you're reading cookies from a fetch response ``` if(Platform.OS === "ios") { cookies = { "Set-Cookie": response.headers.get('set-cookie') }; } else { cookies = response.headers.get('set-cookie'); } ``` updated per...

This would be great. You can think of the case where you might have tagged users in a text block represented with `@thisuser` and want to display those with their...

Anyone from auth0 ever look at these?

> Hi, > > I gave this a try to see if we could add it to our app but ran into a few issues. > > 1. The multiselect...