Skip to content

Commit

Permalink
fix: [M3-8796] - Disallow word-break in billing contact info
Browse files Browse the repository at this point in the history
  • Loading branch information
hasyed-akamai committed Dec 6, 2024
1 parent 82c8990 commit c62b071
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ export const ContactInformation = React.memo((props: Props) => {
{(firstName || lastName) && (
<StyledTypography
data-qa-contact-name
sx={{ wordBreak: 'break-all' }}
sx={{ wordBreak: 'keep-all' }}
>
{firstName} {lastName}
</StyledTypography>
)}
{company && (
<StyledTypography
data-qa-company
sx={{ wordBreak: 'break-all' }}
sx={{ wordBreak: 'keep-all' }}
>
{company}
</StyledTypography>
Expand Down

0 comments on commit c62b071

Please sign in to comment.