1 2 3 4 5 6 7 8 9 10 11 12 13
import {useMutation} from '@tanstack/react-query' import {useAgent} from '#/state/session' export function useRequestEmailVerification() { const agent = useAgent() return useMutation({ mutationFn: async () => { await agent.com.atproto.server.requestEmailConfirmation() }, }) }