diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-27 11:22:20 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-27 11:22:20 -0400 |
commit | 745d04cd5a9709d1ca4dc417fa1cf0c882ea587c (patch) | |
tree | 75633eb5d0a20bff2f01401cdd33e50bddeadc0d /src | |
parent | caac607ed90c35ad8d4b2787b170e1fd1f165333 (diff) |
added numOfLines
Diffstat (limited to 'src')
-rw-r--r-- | src/components/profile/ProfileHeader.tsx | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/components/profile/ProfileHeader.tsx b/src/components/profile/ProfileHeader.tsx index 35ec0ea9..62c2e1e3 100644 --- a/src/components/profile/ProfileHeader.tsx +++ b/src/components/profile/ProfileHeader.tsx @@ -45,7 +45,6 @@ const ProfileHeader: React.FC<ProfileHeaderProps> = ({ const [drawerVisible, setDrawerVisible] = useState(false); const [showBadgeView, setBadgeViewVisible] = useState(false); - const [firstName, lastName] = [...name.split(' ')]; const containerRef = useRef(null); const childRef = useRef(null); @@ -113,15 +112,9 @@ const ProfileHeader: React.FC<ProfileHeaderProps> = ({ screenType={screenType} /> <View style={styles.header}> - {name.length <= 16 ? ( - <Text style={styles.name}>{name}</Text> - ) : ( - <View> - <Text style={styles.name}>{firstName}</Text> - <Text style={styles.name}>{lastName}</Text> - </View> - )} - + <Text style={styles.name} numberOfLines={2}> + {name} + </Text> <View style={styles.friendsAndUniversity}> <FriendsCount screenType={screenType} userXId={userXId} /> <TouchableOpacity |