James Baldassari
James Baldassari
I think this is the same issue as described in this discussion: https://github.com/FirebaseExtended/reactfire/discussions/228 . Another workaround, as mentioned [here](https://github.com/FirebaseExtended/reactfire/discussions/228#discussioncomment-182830), is to clear the preloaded observables cache. I'm kind of leaning...
One of the causes of the double initialization is the use of `` which causes components to be [mounted twice](https://github.com/facebook/react/issues/24502#issuecomment-1118754581) in dev mode, so if you are initializing firestore when...
I found another work-around for setting `Proxy-Authorization`. You can use the Playwright [Route](https://playwright.dev/docs/api/class-route) API. For example, given the Playwright `Context`, you could do something like this: ``` await context.route( (_url:...
`useFirestoreDoc` also has this issue.
@nekochan0122 I'm not sure if this is the same problem you're having, but in my `preview.tsx` I was getting this error: ``` 'React' refers to a UMD global, but the...
I got a notification on this thread that someone posted a `tsconfig.json` workaround, but I don't see the comment here now. Maybe it was deleted? Anyway, whoever it was, thank...
> ended up adding files to my build Ah, that's interesting @vandercloak . So your storybook files were being included in the build? That's not ideal. I suppose that could...
We just changed our workflow to: ``` - name: Publish to Snap Store uses: snapcore/action-publish@v1 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_PUBLISH_CREDENTIALS }} with: snap: ${{ env.SNAP_PACKAGE_PATH }} release: stable ``` We're no...
Thanks for the pointers @bjorn @andrewsomething . Using the `@master` version and re-exporting the credentials worked. Just a suggestion: if possible it might be a good idea to pin the...
> DELETE ops shouldn't have a request body. The HTTP spec does not explicitly forbid request bodies in ```DELETE``` requests. See https://tools.ietf.org/html/rfc7231#section-4.3.5 > The entity to delete should be fully...