this repo has no description
0
fork

Configure Feed

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

Fix bugs with fetching followers/followings

+2 -2
+1 -1
src/components/account-info.jsx
··· 144 144 ), 145 145 ), 146 146 ]; 147 - } else { 147 + } else if (value?.length) { 148 148 newValue = value.filter( 149 149 (account) => 150 150 !familiarFollowersCache.current.some(
+1 -1
src/components/generic-accounts.jsx
··· 29 29 30 30 const loadAccounts = (firstLoad) => { 31 31 if (!fetchAccounts) return; 32 - setAccounts([]); 32 + if (firstLoad) setAccounts([]); 33 33 setUIState('loading'); 34 34 (async () => { 35 35 try {