Open
Description
Do you want to request a feature or report a bug?
when I specify to use firestore for users profiles the data shows up under firebase in the store.
What is the current behavior?
i configured rrf to use firestore for the userprofile
const rrfProps = {
firebase,
config: {
userProfile: "users",
useFirestoreForProfile: true // Firestore for Profile instead of Realtime DB
},
dispatch: store.dispatch,
createFirestoreInstance // <- needed if using firestore
};
yet it shows up inside the "firebase" section of the store, not the "firestore" section.
It looks like on data is actually store in firestore, but the way it is represented in my redux store is quite confusing.
What is the expected behavior?
I expected that the profile would show up inside the "firestore" section of the store.