react-firebase-hooks
react-firebase-hooks copied to clipboard
React Hooks for Firebase.
I am using `useDocumentDataOnce` and trying to mock out the result but not being successful. My understanding is that the first one is the data, second one is loading and...
Hello I'd like to know if its possible to use Firebase-Auth SMS verification with this hook? Would be interested how an example would look like. Thanks!
Would be useful to have the id in the useCollectionData and useCollectionDataOnce hooks, specially to filter among different documents. Maybe it could also be one of the parametes if it...
- fix typo - removed unnecessary `the`
I have a use case that make the use of `useObject` quite painful. It happens that the path of the `Query` is depending on another request to the Database. As...
I'm getting TypeError: Cannot read properties of null (reading 'useReducer') when passing in the `auth` object to `useAuthState`. Not sure what went wrong.
It think awesome library is missing two additional hooks for sign out and delete current user. Please let me know if there is anything I can help with.
with `reactStrictMode=true` in the `next.config.js` during development the useDocumentOnce never retrieves the snapshot data with `useDocumentOnce` , the `loading` remains true If i set `reactStrictMode=false` useDocumentOnce retrieves the data correctly....
fetch only if enabled is true, Coinsider the example ```js const [value, loading, error] = useDocument( doc(firestore, "users", useruid) ); ``` adding a optional flag to fetch only when useruid...