Always fallback from displayName to handle
This commit is contained in:
parent
12ac6fe52e
commit
fb3ca42646
7 changed files with 18 additions and 8 deletions
|
@ -86,7 +86,9 @@ const LikedByItem = ({item}: {item: VotesViewItemModel}) => {
|
|||
/>
|
||||
</View>
|
||||
<View style={styles.layoutContent}>
|
||||
<Text style={[s.f15, s.bold]}>{item.actor.displayName}</Text>
|
||||
<Text style={[s.f15, s.bold]}>
|
||||
{item.actor.displayName || item.actor.handle}
|
||||
</Text>
|
||||
<Text style={[s.f14, s.gray5]}>@{item.actor.handle}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue