Select the types of activity you want to include in your feed.
fix: pds badge, relike on autolike on repost, misc errors
slightly improved favicon fetching (actually goes for favicon.ico files again after the set favicon fetcher fails. also shows the filler db icon until something else becomes available)
···88 useState,
99 useSyncExternalStore,
1010} from 'react'
1111-import {type AtpAgent, type AtpSessionEvent} from '@atproto/api'
1111+import {type Agent, type AtpAgent, type AtpSessionEvent} from '@atproto/api'
12121313import * as persisted from '#/state/persisted'
1414import {useCloseAllActiveElements} from '#/state/util'
···482482 return agent
483483}
484484485485-export function useBlankPrefAuthedAgent(): BskyAgent {
485485+export function useBlankPrefAuthedAgent(): Agent {
486486 const agent = useContext(AgentContext)
487487 if (!agent) {
488488 throw Error('useAgent() must be below <SessionProvider>.')