this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Only exclude relationship attrs for self

+4 -2
+4 -2
src/components/account-info.jsx
··· 605 605 heading: 'Followers', 606 606 fetchAccounts: fetchFollowers, 607 607 instance, 608 - excludeRelationshipAttrs: ['followedBy'], 608 + excludeRelationshipAttrs: isSelf 609 + ? ['followedBy'] 610 + : [], 609 611 }; 610 612 }, 0); 611 613 }} ··· 640 642 heading: 'Following', 641 643 fetchAccounts: fetchFollowing, 642 644 instance, 643 - excludeRelationshipAttrs: ['following'], 645 + excludeRelationshipAttrs: isSelf ? ['following'] : [], 644 646 }; 645 647 }, 0); 646 648 }}