Files
cms-server/client/cms/src/hooks/data/useGetMagicLink.ts
Noa Virellia b70095c99e
Some checks failed
Client CMS Check Build (NixCN CMS) TeamCity build failed
Backend Check Build (NixCN CMS) TeamCity build finished
feat(client): profile improvements
Signed-off-by: Noa Virellia <noa@requiem.garden>
2026-01-29 22:17:16 +08:00

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(),
});
}