react-query-firebase / useReauthenticateWitCredentialMutation
Function: useReauthenticateWitCredentialMutation()
function useReauthenticateWitCredentialMutation<TContext>(options?): UseMutationResult<UserCredential, FirebaseError, UseReauthenticateWitCredentialMutationVariables, TContext>;Defined in: src/web/auth/useReauthenticateWitCredentialMutation.ts:19
Custom hook to create a mutation for re-authenticating a user with a given credential. This hook utilizes useMutation from React Query to manage the asynchronous re-authentication process with Firebase credentials. It omits the default "mutationKey" and "mutationFn" options.
Type Parameters
TContext
TContext = unknown
Parameters
options?
Omit<UseMutationOptions<UserCredential, FirebaseError, UseReauthenticateWitCredentialMutationVariables, TContext>, "mutationKey" | "mutationFn"> = {}
Optional mutation options excluding "mutationKey" and "mutationFn".
Returns
UseMutationResult<UserCredential, FirebaseError, UseReauthenticateWitCredentialMutationVariables, TContext>
A useMutation result object managing the loading, error, and result state of the re-authentication mutation.