Roman Dubinin

Results 3 comments of Roman Dubinin

script `onload` is sometimes unreliable. We ended up just checking global (`window.firebase` or something) with `setInterval` until it became available and then pass it down a `Promise` to use. Even...

```js export default function waitForGlobal(name, timeout = 300) { return new Promise((resolve, reject) => { let waited = 0 function wait(interval) { setTimeout(() => { waited += interval // some...

can confirm, happens on iPhone 14Pro simulator and device, but weirdly not on iPhone14 simulator (no device at hand) ``` Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIView bridge]:...