Finnian Anderson
Finnian Anderson
Sounds like the same issue as #458
I'm seeing this in a React Native app too, but interestingly, I'm also seeing the exact same behaviour in a pure SwiftUI app. On a simulator running either app, as...
I'll show some support for this too. I'm trying to get Apollo to talk to my Rails GraphQL backend, but I'm using Devise Token Auth which requires setting specific headers...
I figured out a solution to my problem of dynamically setting headers. In `nuxt.config.js` you can use `clientConfigs` to provide your own file, rather than a static options object. That...
Following @pedrorestrepo's comment [here](https://github.com/gorhom/react-native-bottom-sheet/issues/932#issuecomment-1137645269), this is what I did to get the mock working: ```typescript import mockBottomSheet from '@gorhom/bottom-sheet/mock'; jest.mock('@gorhom/bottom-sheet', () => ({ ...mockBottomSheet, __esModule: true, })); ```
Here's an updated version of @skratchdot's bookmarklet for newer versions of ngrok (tested against 3.3.1): ``` javascript:(() => {const s = document.createElement("script"); s.src = "https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"; s.onload = () => {[...document.querySelectorAll(".tunnels")].forEach(el...
[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called
For anyone coming across this, I don't think this is an Apple silicon + Ruby issue, as I get exactly the same error when using `vips` (imagemagick is fine) with...
Thank you @ccfz, this is awesome. Without this, my subscriptions weren't initially connecting without triggering a refresh or navigation in RN. Very strange.
For anyone else bumping into a similar issue, make sure you're initiating the sign-in flow with a post request to the local endpoint. You can't redirect to the cognito hosted...
Confirmed on Fly.io (not sure what they're using under the hood).