Skip to content

Commit

Permalink
Fix RQ key
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Nov 14, 2023
1 parent ddded23 commit c487e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/queries/profile-follows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {useSession} from '../session'
const PAGE_SIZE = 30
type RQPageParam = string | undefined

export const RQKEY = (did: string) => ['profile-followers', did]
export const RQKEY = (did: string) => ['profile-follows', did]

export function useProfileFollowsQuery(did: string | undefined) {
const {agent} = useSession()
Expand Down

0 comments on commit c487e72

Please sign in to comment.