9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { useMutation } from '@tanstack/react-query';
|
|
import { postAuthMagicMutation } from '@/client/@tanstack/react-query.gen';
|
|
|
|
export function useGetMagicLink() {
|
|
return useMutation({
|
|
...postAuthMagicMutation(),
|
|
});
|
|
}
|