react-firebase-hooks icon indicating copy to clipboard operation
react-firebase-hooks copied to clipboard

React Hooks for Firebase.

Results 89 react-firebase-hooks issues
Sort by recently updated
recently updated
newest added

# Issue: FirebaseError with useDocumentData Hook in React-Firebase Integration ## Environment - **Firebase Version:** 10.6.0 - **Next.js Version:** 14.0.2 - **React Version:** 18+ - **React DOM Version:** 18+ - **React...

I'm not sure if this was the intended behavior, but useHttpsCallable's `callCallable` function returns a `Promise` which is being used to say "if the call succeeds return the expected `ResponseData`...

I'm trying to implement the reset password flow in my app and I noticed that this library is missing references to the `firebase/auth` `confirmPasswordReset` function. Is this by design that...

When i try to debug and console.log (listings) or console.log(car) I dont get id for each item, except id i can get every field that is in my collection. I...

Add actionCodeSettings to email verification https://github.com/CSFrequency/react-firebase-hooks/issues/318

Similar to this PR https://github.com/CSFrequency/react-firebase-hooks/pull/217 It looks like ``` const [sendEmailVerification, sending, error] = useSendEmailVerification(auth); ``` Do not allow to pass a `actionCodeSettings` which is kind of annoying when we...

Hi, I've a collection of items, which have a subcollection. I currently get the collection like this: ``` const [user] = useAuthState(auth); const householdsRef = collection(db, "households"); const queryRef =...

### `useSendPasswordResetEmail` hook returns incorrect success status for unregistered emails **Issue Type:** Bug **Description:** When using the `useSendPasswordResetEmail` hook, I noticed that it does not return an `error` when the...

These two hooks will regularly, but not all the time, return an indeterminate state. That is, `user` is `null`; `loading` is `false`; and `error` is `null`. This occurs when logging...

Listeners on "value" event were not remove on unmount + Unsubscribe functions were not called properly.