Something went wrong. Try again.
Bluesky app fork with some witchin' additions 馃挮
Something went wrong. Try again.
357 B 路 14 lines
TypeScript
123456789101112131415import {useMutation} from '@tanstack/react-query'
import {useAgent} from '#/state/session'import {pdsAgent} from '#/state/session/agent'
export function useRequestEmailVerification() { const agent = useAgent()
return useMutation({ mutationFn: async () => { await pdsAgent(agent).com.atproto.server.requestEmailConfirmation() }, })}