Something went wrong. Try again.
Bluesky app fork with some witchin' additions 💫 forked from jollywhoppers.com/witchsky.app
Something went wrong. Try again.
300 B · 13 lines
TypeScript
1234567891011121314import {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() }, })}