Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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