Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 0b3ad3e

Browse files
authored
Merge pull request #485 from mbaghel/dev
Add job title to Result Card
2 parents 42af432 + b100e77 commit 0b3ad3e

File tree

1 file changed

+3
-1
lines changed
  • src/routes/CreateNewTeam/components/ResultCard

1 file changed

+3
-1
lines changed

src/routes/CreateNewTeam/components/ResultCard/index.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ function ResultCard({
6868
<Curve styleName="curve" />
6969
<IconEarthCheck styleName="transparent-icon" />
7070
</div>
71-
<h4 styleName="job-title">{name}</h4>
71+
<h4 styleName="job-title">
72+
{jobTitle && jobTitle.length ? jobTitle : name}
73+
</h4>
7274
<div styleName="button-group">
7375
<Button
7476
type={!showRates ? "segment-selected" : "segment"}

0 commit comments

Comments
 (0)