Skip to content

Commit b99c547

Browse files
authored
[offers][chore] fix analysis description (#550)
1 parent b7d1cef commit b99c547

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

apps/portal/src/components/offers/offerAnalysis/OfferAnalysis.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,17 @@ function OfferAnalysisContent({
3737
return (
3838
<Alert title="Insufficient data to compare with" variant="info">
3939
You are among the first to submit an offer for your job title and
40-
years of experience! Check back later when there are more submissions.
40+
years of experience in your location! Check back later when there are
41+
more submissions.
4142
</Alert>
4243
);
4344
}
4445

4546
return (
4647
<Alert title="Insufficient data to compare with" variant="info">
4748
You are among the first to submit an offer for this company, job title
48-
and years of experience! Check back later when there are more
49-
submissions.
49+
and years of experience in your location! Check back later when there
50+
are more submissions.
5051
</Alert>
5152
);
5253
}

apps/portal/src/components/offers/offerAnalysis/OfferPercentileAnalysisText.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ export default function OfferPercentileAnalysisText({
1818
{isSubmission ? 'Your' : "This profile's"} highest offer is from{' '}
1919
<b>{companyName}</b>, which is <b>{percentile.toFixed(1)}</b> percentile
2020
out of <b>{noOfOffers}</b> offers received for the same job title and
21-
YOE(±1) in the last year.
21+
YOE(±1) in the last year in the same location.
2222
</p>
2323
) : (
2424
<p>
2525
{isSubmission ? 'Your' : 'The'} offer from <b>{companyName}</b> is{' '}
2626
<b>{percentile.toFixed(1)}</b> percentile out of <b>{noOfOffers}</b>{' '}
2727
offers received in {companyName} for the same job title and YOE(±1) in the
28-
last year.
28+
last year in the same location.
2929
</p>
3030
);
31-
}
31+
}

0 commit comments

Comments
 (0)