mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

Fix bad references in account switcher (#1999)

authored by

Eric Bailey and committed by
GitHub
3007c1dc 486fb727

+2 -2
+2 -2
src/view/com/modals/SwitchAccount.tsx
··· 45 45 </View> 46 46 <View style={[s.flex1]}> 47 47 <Text type="md-bold" style={pal.text} numberOfLines={1}> 48 - {profile?.displayName || currentAccount?.handle} 48 + {profile?.displayName || account?.handle} 49 49 </Text> 50 50 <Text type="sm" style={pal.textLight} numberOfLines={1}> 51 - {currentAccount?.handle} 51 + {account?.handle} 52 52 </Text> 53 53 </View> 54 54