react-firebase-hooks
react-firebase-hooks copied to clipboard
React Hooks for Firebase.
Seems like there hasn't been a release for almost a year and there are a lot of open GitHub issues that haven't been responded to.
According to the Firebase documentation, the [httpsCallable](https://firebase.google.com/docs/reference/node/firebase.functions.Functions#httpscallable) method also accepts a 3rd parameter (options). - Updated `useHttpsCallable.ts` - Updated `README.md` description
"firebase": "^10.3.1", "next": "13.4.13", "react": "18.2.0", "react-dom": "18.2.0", "react-firebase-hooks": "^5.1.1", The user is signed in using useSignInWithGoogle ` const [signInWithGoogle, loading, error] = useSignInWithGoogle(auth);` Here's the sample code ` const...
Hey, I keep getting this error when using useSignInWithGoogle in Next. js. Does anyone know a solution? Thanks in advance.
I'm using `useDocumentData` in order to fetch a document and keep it updated. When the hook is initialized, reading the doc is not permitted yet (due to a certain condition...
is it should display `useSignInWithEmailLink` hook in list?
When trying run build a react project with vite using react-firebase-hooks, the following error is returned: `commonjs--resolver] Failed to resolve entry for package "react-firebase-hooks". The package may have incorrect main/module/exports...
Using latest next "next": "13.4.4", reference ticket: https://github.com/CSFrequency/react-firebase-hooks/issues/252 ``` const queryRef = query( collection(db, "tournaments"), orderBy("date"), where("date", ">", timeStamp), limit(1) ); const [tournaments, loadingTournaments, errorTournaments] = useCollectionOnce( queryRef, { snapshotListenOptions:...
Some people manage projects with specifications requiring the use of custom secure JWT as the authentication method with Firebase, based on [this](https://firebase.google.com/docs/auth/admin/create-custom-tokens) documentation. Here I intend to add new `useSignInWithCustomToken`...
For a while, I have been wondering why my token is not refreshed automatically, despite using useIdToken. I come back to my machine after a break or the next morning,...