Rotem Yakir

Results 5 issues of Rotem Yakir

I started using `[RNSplashScreen showSplash];` and it was working great, however, I didn't know that this method is blocking the thread with a while loop. This caused for some listeners...

Here is the patch file I did to fix the issue ``` diff --git a/node_modules/amplitude-js/amplitude.native.js b/node_modules/amplitude-js/amplitude.native.js index 2eff026..bfd2284 100644 --- a/node_modules/amplitude-js/amplitude.native.js +++ b/node_modules/amplitude-js/amplitude.native.js @@ -3900,7 +3900,7 @@ */ - var...

enhancement

I've tested it and it is working great, just need to replace `asset` with `coin`.

Hey, in lib/strategy.js file line 241 you should change `} else if (jwt.payload.iss != 'accounts.google.com') {` to `} else if (jwt.payload.iss != 'accounts.google.com' && jwt.payload.iss != 'https://accounts.google.com') {` See this...

Hey, I'm using bootstrap with ImmutableUtil like this: ``` var immutableAlt = require('alt/utils/ImmutableUtil'); alt.createStore(immutableAlt(MyStore), 'MyStore'); ``` and then with bootstrap like this: ``` alt.bootstrap( JSON.stringify( { 'MyStore': { data: {...

bug