diff options
-rw-r--r-- | src/view/screens/Search/Search.tsx | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index 737e4c5c3..30d16506e 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -894,13 +894,6 @@ let AutocompleteResults = ({ } AutocompleteResults = React.memo(AutocompleteResults) -function truncateText(text: string, maxLength: number) { - if (text.length > maxLength) { - return text.substring(0, maxLength) + '...' - } - return text -} - function SearchHistory({ searchHistory, selectedProfiles, @@ -965,8 +958,10 @@ function SearchHistory({ style={styles.profileAvatar as StyleProp<ImageStyle>} accessibilityIgnoresInvertColors /> - <Text style={[pal.text, styles.profileName]}> - {truncateText(profile.displayName || '', 12)} + <Text + style={[pal.text, styles.profileName]} + numberOfLines={1}> + {profile.displayName || profile.handle} </Text> </Link> <Pressable @@ -1118,6 +1113,7 @@ const styles = StyleSheet.create({ borderRadius: 45, }, profileName: { + width: 78, fontSize: 12, textAlign: 'center', marginTop: 5, |