Andrei Lesnitsky
Andrei Lesnitsky
The alias was available. I will try to invalidate the cache manually.
the issue is still valid for the subdomain, I think the root cause is the same
@SamBellerose are you trying to call event right after webview loaded?
that's most likely related to [this issue](https://github.com/facebook/react-native/issues/11594) You can try to emit event inside `setTimeout`, however synchronous emit of event doesn't really makes sense, as you can use `onLoad` callback...
No worries, it's good 👍 Could you also explain this fix? What is real root cause and how does this fix it
hey @ptvandi, thanks for your feedback. I will take a closer look this evening
@nacho-carnicero question for you: why is this patch should be evaluated inside `render` method of a HoC? I think it will be enough to evaluate this code just once?
@nacho-carnicero Not sure `hoc.js` is the best place for this piece of code. Maybe it worth to move this code to webview part of library? Any ideas?
@nacho-carnicero this looks better, however I wonder if there is a possibility to move this part of code to webview side? Smth like `src/web/remote.js` sounds good, could you check if...