Skip to content

Commit 43ecd22

Browse files
committed
MP-184 Fix comma in woek exp.card
1 parent d7bf36c commit 43ecd22

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

src/apps/profiles/src/member-profile/profile-header/ProfileHeader.module.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@
1414
position: absolute;
1515
right: 0;
1616
top: 0;
17-
color: $turq-120;
17+
color: $tc-white;
1818

1919
svg {
2020
width: 70px;
2121
height: 70px;
22+
fill: $turq-120;
23+
24+
path {
25+
fill: $turq-120;
26+
}
2227
}
2328
}
2429

src/apps/profiles/src/member-profile/profile-header/ProfileHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
UserTraitIds,
1111
UserTraits,
1212
} from '~/libs/core'
13-
import { Button, IconSolid } from '~/libs/ui'
13+
import { Button, IconOutline } from '~/libs/ui'
1414

1515
import { EditMemberPropertyBtn } from '../../components'
1616
import { EDIT_MODE_QUERY_PARAM, profileEditModes } from '../../config'
@@ -117,7 +117,7 @@ const ProfileHeader: FC<ProfileHeaderProps> = (props: ProfileHeaderProps) => {
117117
{
118118
isMemberVerified ? (
119119
<div className={styles.verifiedBadge}>
120-
<IconSolid.CheckCircleIcon />
120+
<IconOutline.CheckCircleIcon />
121121
</div>
122122
) : undefined
123123
}

src/apps/profiles/src/member-profile/work-expirence/WorkExpirenceCard/WorkExpirenceCard.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,11 @@ const WorkExpirenceCard: FC<WorkExpirenceCardProps> = (props: WorkExpirenceCardP
1515
<div className={styles.workExpirenceCardHeaderLeft}>
1616
<p className='body-main-bold'>
1717
{props.work.position}
18-
,
19-
{' '}
20-
{props.work.industry}
18+
{props.work.industry ? `, ${props.work.industry}` : undefined}
2119
</p>
2220
<p>
2321
{props.work.company}
24-
,
25-
{' '}
26-
{props.work.cityTown}
22+
{props.work.cityTown ? `, ${props.work.cityTown}` : undefined}
2723
</p>
2824
</div>
2925
{

0 commit comments

Comments
 (0)