We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I want to do this:
const mutation = useAuthSignOut(firebaseAuth); useEffect(() => { mutation.mutate(); }, [mutation]); // Can not pass in mutation as a dependency
But when I do so, the page freezes.
I have to remove it from the dependencies array to make it work. Why is that?