diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 010a4f13..a0d7c195 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -605,7 +605,9 @@ function AccountInfo({ heading: 'Followers', fetchAccounts: fetchFollowers, instance, - excludeRelationshipAttrs: ['followedBy'], + excludeRelationshipAttrs: isSelf + ? ['followedBy'] + : [], }; }, 0); }} @@ -640,7 +642,7 @@ function AccountInfo({ heading: 'Following', fetchAccounts: fetchFollowing, instance, - excludeRelationshipAttrs: ['following'], + excludeRelationshipAttrs: isSelf ? ['following'] : [], }; }, 0); }}