Skip to content

Commit 18a4042

Browse files
committed
renamed function name
1 parent 383480e commit 18a4042

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import classNames from 'classnames'
33
import moment from 'moment'
44

55
import { UserTrait } from '~/libs/core'
6-
import { getIndustryOptionLabels } from '~/libs/shared'
6+
import { getIndustryOptionLabel } from '~/libs/shared'
77

88
import styles from './WorkExpirenceCard.module.scss'
99

@@ -18,7 +18,7 @@ const WorkExpirenceCard: FC<WorkExpirenceCardProps> = (props: WorkExpirenceCardP
1818
<div className={styles.workExpirenceCardHeaderLeft}>
1919
<p className='body-main-bold'>
2020
{props.work.position}
21-
{props.work.industry ? `, ${getIndustryOptionLabels(props.work.industry)}` : undefined}
21+
{props.work.industry ? `, ${getIndustryOptionLabel(props.work.industry)}` : undefined}
2222
</p>
2323
<p>
2424
{props.work.company}

0 commit comments

Comments
 (0)