Something went wrong. Try again.
Bluesky app fork with some witchin' additions 💫 forked from jollywhoppers.com/witchsky.app
Something went wrong. Try again.
751 B · 28 lines
TypeScript
at main
1234567891011121314151617181920212223242526272829import {useMutation} from '@tanstack/react-query'
import {useAgent, useSession} from '#/state/session'
export function useConfirmEmail({ onSuccess, onError,}: {onSuccess?: () => void; onError?: () => void} = {}) { const agent = useAgent() const {currentAccount} = useSession()
return useMutation({ mutationFn: async ({token}: {token: string}) => { if (!currentAccount?.email) { throw new Error('No email found for the current account') }
await agent.com.atproto.server.confirmEmail({ email: currentAccount.email.trim(), token: token.trim(), }) // will update session state at root of app await agent.resumeSession(agent.session!) }, onSuccess, onError, })}