fix: 💨

This commit is contained in:
codytseng 2026-01-14 11:37:43 +08:00
parent 1766beade4
commit 28a1b3096a

View file

@ -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[] = []