George Kormaris
George Kormaris
Have you added the typescript extensions in your babel config? Here's my config for example, which works fine with @babel/preset-typescript ##### babel ```javascript ... [ 'babel-plugin-module-resolver', { cwd: 'packagejson', root:...
This is solved by using your own HOC over ``, like this: ```javascript const customContainerQuery = (query) => (Component) => (props) => ( {(params) => } ); // Usage: customContainerQuery(query)(MyComponent)...
This also fixes `await auth.sendOobCode()` since it returns a Promise instead of undefined @samuelgozi
Maybe this should be reported to [facebook/prepack](https://github.com/facebook/prepack). Prepack 0.2.6 works for me, but the last few releases don't.
Thanks @ghukahr, really appreciate the heads up! I'll see if there's anything I can do to appease Windows.
It looks like it might have been a temporary problem with the Dart server. Are you still having this issue with 2.17.3?
Hmm in the past we've had trouble with the installer using proxies. Would you mind sharing some details like Windows version, whether you're using a proxy, and lastly can you...
Is it yet time for the yearly update on this issue? 🙂
It sounds like keeping a last updated timestamp would solve this. This issue and associated PR in the main repo might be relevant? https://github.com/apollographql/apollo-client/issues/9502 https://github.com/apollographql/apollo-client/pull/9503
Hi! I suspect the problem is that this [`window.open()`](https://github.com/NangoHQ/nango/blob/master/packages/frontend/lib/index.ts#L491) call happens in an async context when the [AuthorizationModal is instantiated](https://github.com/NangoHQ/nango/blob/master/packages/frontend/lib/index.ts#L174) in a Promise. Most browsers block `window.open` if it's not...