react-firebase-hooks
react-firebase-hooks copied to clipboard
React Hooks for Firebase.
https://github.com/CSFrequency/react-firebase-hooks/blob/edab3f3f3b5ec01c8aafcc6096755dfcc69e4408/auth/README.md?plain=1#L559 In the docs you suggest to use `email` as a parameter, but it should be `password`.
When I am trying to get a user with useAuthState, it gives me null. How can i fix this?
I have used 3+ hooks of authentication hooks, but I can't implement showing errors, please check it
react-firebase-hooks are returned as array. I think it will be more easy to destructure the proper properties or methods if they are returned as object.
I have: ``` const [documents, documentsLoading, documentsError]: [DocumentInterface[], boolean, Error] = useCollectionDataOnce( firebase.firestore().collection('documents') .where('userId', '==', '1234') .orderBy('updatedAt', 'desc') , { idField: 'id' } ) useEffect(() => { console.log(documentsLoading, documents) },...
I've just been using your package for Auth hooks and noticed that it has no support for update of the current user i.e. when you change email or display name...
Fix auth README typos
Hi, I'm probably just missing something obvious here: If we have a list of widgets using something like ``` const [snapshot, loading, error] = useList(vQry); {snapshot.map((item: { key: any; val:...