diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-14 13:39:10 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-14 13:39:10 -0600 |
commit | fb3ca42646080b7637431e32947b834d6796e8e6 (patch) | |
tree | 6e78d6519728eacb9e24d3c69d4da37f347c84b3 /src/view/com/profile/ProfileFollows.tsx | |
parent | 12ac6fe52e57fa1ecfe390087a9ec6383cf9df6b (diff) | |
download | voidsky-fb3ca42646080b7637431e32947b834d6796e8e6.tar.zst |
Always fallback from displayName to handle
Diffstat (limited to 'src/view/com/profile/ProfileFollows.tsx')
-rw-r--r-- | src/view/com/profile/ProfileFollows.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileFollows.tsx b/src/view/com/profile/ProfileFollows.tsx index d0619ba77..1bdd18f66 100644 --- a/src/view/com/profile/ProfileFollows.tsx +++ b/src/view/com/profile/ProfileFollows.tsx @@ -84,7 +84,7 @@ const User = ({item}: {item: FollowItem}) => { /> </View> <View style={styles.layoutContent}> - <Text style={[s.f15, s.bold]}>{item.displayName}</Text> + <Text style={[s.f15, s.bold]}>{item.displayName || item.handle}</Text> <Text style={[s.f14, s.gray5]}>@{item.handle}</Text> </View> </View> |