Fallback to display name in search results

zio/stable
Paul Frazee 2022-11-22 16:18:10 -06:00
parent 903cce20e7
commit 8da3124f3a
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => {
/>
<View style={[s.ml10]}>
<Text style={styles.searchResultDisplayName}>
{item.displayName}
{item.displayName || item.handle}
</Text>
<Text style={styles.searchResultHandle}>@{item.handle}</Text>
</View>