Something went wrong. Try again.
Bluesky app fork with some witchin' additions 💫 forked from jollywhoppers.com/witchsky.app
Something went wrong. Try again.
752 B · 29 lines
TypeScript
at main
123456789101112131415161718192021222324252627282930import {useMutation} from '@tanstack/react-query'
import {useAgent, useSession} from '#/state/session'
export function useManageEmail2FA() { const agent = useAgent() const {currentAccount} = useSession()
return useMutation({ mutationFn: async ({ enabled, token, }: | {enabled: true; token?: undefined} | {enabled: false; token: string}) => { if (!currentAccount?.email) { throw new Error('No email found for the current account') }
await agent.com.atproto.server.updateEmail({ email: currentAccount.email, emailAuthFactor: enabled, token, }) // will update session state at root of app await agent.resumeSession(agent.session!) }, })}