diff options
Diffstat (limited to 'src/state/queries/profile-lists.ts')
-rw-r--r-- | src/state/queries/profile-lists.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/state/queries/profile-lists.ts b/src/state/queries/profile-lists.ts index 9cc395e43..543961d63 100644 --- a/src/state/queries/profile-lists.ts +++ b/src/state/queries/profile-lists.ts @@ -1,7 +1,7 @@ import {AppBskyGraphGetLists} from '@atproto/api' import {InfiniteData, QueryKey, useInfiniteQuery} from '@tanstack/react-query' -import {getAgent} from '#/state/session' +import {useAgent} from '#/state/session' const PAGE_SIZE = 30 type RQPageParam = string | undefined @@ -11,6 +11,7 @@ export const RQKEY = (did: string) => [RQKEY_ROOT, did] export function useProfileListsQuery(did: string, opts?: {enabled?: boolean}) { const enabled = opts?.enabled !== false + const {getAgent} = useAgent() return useInfiniteQuery< AppBskyGraphGetLists.OutputSchema, Error, |