Scott Prue

Results 270 comments of Scott Prue

Reposting [codesandbox of the issue](https://codesandbox.io/s/brave-framework-49mky) from [this duplicate issue](https://github.com/prescottprue/react-redux-firebase/issues/1023) created by @tarunkishore2303

## Main Issue If `firestore.set` is not available It may be due to not having imported Firestore - what do the imports look like along side your main `initializeApp`? Also,...

I am not seeing any imports in your example, are you sure you are importing Firestore? Could you provide a full repo where this can be reproduced? Based on your...

A full repro in codesandbox would be good - The usage of the new context API changes how gathering the extended firebase instance works.

@Jsh007 I believe that is coming from `initializeApp` being called multiple times - this can happen in development easily due to module reloading - Try only initializing if the instance...

I don't believe that the way you are using the ReactReduxFirebaseProvider will work as expected. It seems like you are mixing the old API (which used a store enhancer named...

Did you try providing an array? I.e. `orderBy: ['timestamp']`? The array represents the two arguments being passed to orderBy Either way, we should update the types to support both since...

You should be able to use a `connect` before your usage of `firebaseConnect` to pull out of the store state

Make sure you are passing an array of query configs to `useFirestoreConnect` instead of a single object. We should have something in place to throw an error in this case,...