react-firebase-hooks
react-firebase-hooks copied to clipboard
React Hooks for Firebase.
```js import { doc } from 'firebase/firestore'; import { createContext, useEffect, useState } from 'react'; import { auth, db } from '../firebase/firebase-config'; import { useDocumentData, useDocumentDataOnce, } from 'react-firebase-hooks/firestore'; import...
Hello! When I check out this repo (at edab3f3) and run `yarn`, it installs dependencies and then starts a build. The build fails at this point: ``` util/index.ts → util/dist/index.cjs.js,...
Fixed Typo for useUpdatePassword I think it should be `updatePassword(password)` instead of `updatePassword(email)`
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
I'm not sure I understand when this function is supposed to trigger, but a simple route navigation out and in the same page will run this function, even if the...
I've come across an issue where the useOnce hooks, for example `useCollectionOnce()` never loads any results - the loading property just returns `true` and nothing updates. ``` import { useCollectionDataOnce...
I've noticed this issue intermittently: When a new record is added to the realtime database, it shows up **multiple times** in the list when using `useList`. When I refresh the...
I'm attempting to use the "postConverter" example provided in the the "Transforming data" section of the docs. I'm using Firebase v9 without TypeScript and I'm not sure how to implement...
Hey. Very nice project, thanks for maintaining this! I'm using the `createUserWithEmailAndPassword()` hook, but I've noticed that it does not return the user credentials like in this [Firebase example](https://github.com/firebase/snippets-web/blob/01d37b7b0a42e5304d172543b986282d0d61d214/snippets/auth-next/email/auth_signup_password.js#L8-L21). I...
Hello! First of all, thank you for this library. It has been extremely helpful in developing with Firebase. I have recently run into a problem while upgrading to v5 that...