diff options
Diffstat (limited to 'src/view/com/profile')
-rw-r--r-- | src/view/com/profile/ProfileFollowers.tsx | 2 | ||||
-rw-r--r-- | src/view/com/profile/ProfileFollows.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/profile/ProfileFollowers.tsx b/src/view/com/profile/ProfileFollowers.tsx index 45c1b3ad6..d94f5103e 100644 --- a/src/view/com/profile/ProfileFollowers.tsx +++ b/src/view/com/profile/ProfileFollowers.tsx @@ -28,7 +28,7 @@ export function ProfileFollowers({name}: {name: string}) { isError, error, refetch, - } = useProfileFollowersQuery(resolvedDid?.did) + } = useProfileFollowersQuery(resolvedDid) const followers = React.useMemo(() => { if (data?.pages) { diff --git a/src/view/com/profile/ProfileFollows.tsx b/src/view/com/profile/ProfileFollows.tsx index e1dce78a7..890c13eb2 100644 --- a/src/view/com/profile/ProfileFollows.tsx +++ b/src/view/com/profile/ProfileFollows.tsx @@ -28,7 +28,7 @@ export function ProfileFollows({name}: {name: string}) { isError, error, refetch, - } = useProfileFollowsQuery(resolvedDid?.did) + } = useProfileFollowsQuery(resolvedDid) const follows = React.useMemo(() => { if (data?.pages) { |