From 28a1b3096a93f48c939740c075320ba827ab78fb Mon Sep 17 00:00:00 2001 From: codytseng Date: Wed, 14 Jan 2026 11:37:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=92=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Profile/FollowedBy.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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[] = []