Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

show all accounts in switcher

+2 -3
+2 -3
src/view/com/composer/Composer.tsx
··· 1543 1543 }) 1544 1544 const profiles = data?.profiles 1545 1545 1546 - const otherAccounts = accounts 1547 - .filter(acc => acc.did !== currentAccount!.did) 1546 + const allAccounts = accounts 1548 1547 .map(account => ({ 1549 1548 account, 1550 1549 profile: profiles?.find(p => p.did === account.did), ··· 1586 1585 </Menu.Trigger> 1587 1586 { 1588 1587 <SwitchMenuItems 1589 - accounts={otherAccounts} 1588 + accounts={allAccounts} 1590 1589 signOutPromptControl={signOutPromptControl} 1591 1590 showExtraButtons={false} 1592 1591 onSelectAccount={account => setActiveAccountDid(account.did)}