Skip to content

Commit 4772cc1

Browse files
small work break fix
1 parent 180ee4c commit 4772cc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/ContactInformation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,15 @@ export const ContactInformation = React.memo((props: Props) => {
189189
{(firstName || lastName) && (
190190
<StyledTypography
191191
data-qa-contact-name
192-
sx={{ wordBreak: 'keep-all' }}
192+
sx={{ wordBreak: 'break-word' }}
193193
>
194194
{firstName} {lastName}
195195
</StyledTypography>
196196
)}
197197
{company && (
198198
<StyledTypography
199199
data-qa-company
200-
sx={{ wordBreak: 'keep-all' }}
200+
sx={{ wordBreak: 'break-word' }}
201201
>
202202
{company}
203203
</StyledTypography>

0 commit comments

Comments
 (0)