diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/SwitchAccount.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/SwitchAccount.tsx b/src/view/com/modals/SwitchAccount.tsx index dab0127cc..38e1ce1e0 100644 --- a/src/view/com/modals/SwitchAccount.tsx +++ b/src/view/com/modals/SwitchAccount.tsx @@ -45,10 +45,10 @@ function SwitchAccountCard({account}: {account: SessionAccount}) { </View> <View style={[s.flex1]}> <Text type="md-bold" style={pal.text} numberOfLines={1}> - {profile?.displayName || currentAccount?.handle} + {profile?.displayName || account?.handle} </Text> <Text type="sm" style={pal.textLight} numberOfLines={1}> - {currentAccount?.handle} + {account?.handle} </Text> </View> |