Skip to content

Commit

Permalink
Merge pull request #45367 from Krishna2323/krishna2323/issue/45256
Browse files Browse the repository at this point in the history
fix: Profile: Long email doesn't take full width.
  • Loading branch information
neil-marcellini authored Jul 15, 2024
2 parents c7af580 + 1445838 commit 33df500
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/ProfilePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ function ProfilePage({route}: ProfilePageProps) {
</Text>
<CommunicationsLink value={phoneOrEmail ?? ''}>
<UserDetailsTooltip accountID={details?.accountID ?? -1}>
<Text numberOfLines={1}>{isSMSLogin ? formatPhoneNumber(phoneNumber ?? '') : login}</Text>
<Text
numberOfLines={1}
style={styles.w100}
>
{isSMSLogin ? formatPhoneNumber(phoneNumber ?? '') : login}
</Text>
</UserDetailsTooltip>
</CommunicationsLink>
</View>
Expand Down

0 comments on commit 33df500

Please sign in to comment.