about summary refs log tree commit diff
path: root/src/state/queries/my-blocked-accounts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/queries/my-blocked-accounts.ts')
-rw-r--r--src/state/queries/my-blocked-accounts.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/state/queries/my-blocked-accounts.ts b/src/state/queries/my-blocked-accounts.ts
index 5a83bee2c..4d5bd7a0e 100644
--- a/src/state/queries/my-blocked-accounts.ts
+++ b/src/state/queries/my-blocked-accounts.ts
@@ -1,14 +1,13 @@
 import {AppBskyGraphGetBlocks} from '@atproto/api'
 import {useInfiniteQuery, InfiniteData, QueryKey} from '@tanstack/react-query'
 
-import {useSession} from '#/state/session'
+import {getAgent} from '#/state/session'
 import {STALE} from '#/state/queries'
 
 export const RQKEY = () => ['my-blocked-accounts']
 type RQPageParam = string | undefined
 
 export function useMyBlockedAccountsQuery() {
-  const {agent} = useSession()
   return useInfiniteQuery<
     AppBskyGraphGetBlocks.OutputSchema,
     Error,
@@ -19,7 +18,7 @@ export function useMyBlockedAccountsQuery() {
     staleTime: STALE.MINUTES.ONE,
     queryKey: RQKEY(),
     async queryFn({pageParam}: {pageParam: RQPageParam}) {
-      const res = await agent.app.bsky.graph.getBlocks({
+      const res = await getAgent().app.bsky.graph.getBlocks({
         limit: 30,
         cursor: pageParam,
       })