diff --git a/src/components/Profile/FollowedBy.tsx b/src/components/Profile/FollowedBy.tsx index 4e1994d..c8ca7e2 100644 --- a/src/components/Profile/FollowedBy.tsx +++ b/src/components/Profile/FollowedBy.tsx @@ -18,7 +18,7 @@ export default function FollowedBy({ pubkey }: { pubkey: string }) { const followings = (await client.fetchFollowings(accountPubkey)).reverse() const followingsOfFollowings = await Promise.all( followings.map(async (following) => { - return client.fetchFollowings(following) + return client.fetchFollowings(following, false) }) ) const _followedBy: string[] = []