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

Commit b100e77

Browse files
authored
Add job title to Result Card
1 parent 42af432 commit b100e77

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)