Skip to content

Commit 7c7ca87

Browse files
authored
fix(my company): fix text overlap issue at company roles (eclipse-tractusx#1180)
eclipse-tractusx#1172
1 parent 77b2159 commit 7c7ca87

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/components/pages/Organization/MyCompanyInfoComponent.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,15 @@ export default function MyCompanyInfoComponent({
4747
{
4848
key: '',
4949
value: (
50-
<>
50+
<Box sx={{ display: 'flex', flexWrap: 'wrap', gap: '8px' }}>
5151
{companyDetails?.companyRole.map((item: string) => (
5252
<StatusTag
5353
key={item}
5454
color="label"
5555
label={t(`content.companyRolesUpdate.${item}`)}
56-
sx={{
57-
marginRight: '8px',
58-
}}
5956
/>
6057
))}
61-
</>
58+
</Box>
6259
),
6360
},
6461
]

0 commit comments

Comments
 (0)