17 lines
511 B
TypeScript
17 lines
511 B
TypeScript
![]() |
import { useMutation } from '@tanstack/react-query';
|
||
|
|
||
|
import { authApi, IRequestPasswordDTO } from './api';
|
||
|
|
||
|
export const useRequestPasswordReset = () => {
|
||
|
const mutation = useMutation({
|
||
|
mutationKey: ['request-password-reset'],
|
||
|
mutationFn: authApi.requestPasswordReset
|
||
|
});
|
||
|
return {
|
||
|
requestPasswordReset: (data: IRequestPasswordDTO, onSuccess?: () => void) => mutation.mutate(data, { onSuccess }),
|
||
|
isPending: mutation.isPending,
|
||
|
error: mutation.error,
|
||
|
reset: mutation.reset
|
||
|
};
|
||
|
};
|