From b99c547c414abb91d047b4d408b3dd3f3a18bef2 Mon Sep 17 00:00:00 2001
From: Zhang Ziqing <69516975+ziqing26@users.noreply.github.com>
Date: Wed, 9 Nov 2022 13:13:59 +0800
Subject: [PATCH] [offers][chore] fix analysis description (#550)
---
.../src/components/offers/offerAnalysis/OfferAnalysis.tsx | 7 ++++---
.../offers/offerAnalysis/OfferPercentileAnalysisText.tsx | 6 +++---
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/apps/portal/src/components/offers/offerAnalysis/OfferAnalysis.tsx b/apps/portal/src/components/offers/offerAnalysis/OfferAnalysis.tsx
index 7fed5be7..4da33d3b 100644
--- a/apps/portal/src/components/offers/offerAnalysis/OfferAnalysis.tsx
+++ b/apps/portal/src/components/offers/offerAnalysis/OfferAnalysis.tsx
@@ -37,7 +37,8 @@ function OfferAnalysisContent({
return (
You are among the first to submit an offer for your job title and
- years of experience! Check back later when there are more submissions.
+ years of experience in your location! Check back later when there are
+ more submissions.
);
}
@@ -45,8 +46,8 @@ function OfferAnalysisContent({
return (
You are among the first to submit an offer for this company, job title
- and years of experience! Check back later when there are more
- submissions.
+ and years of experience in your location! Check back later when there
+ are more submissions.
);
}
diff --git a/apps/portal/src/components/offers/offerAnalysis/OfferPercentileAnalysisText.tsx b/apps/portal/src/components/offers/offerAnalysis/OfferPercentileAnalysisText.tsx
index f19c95d0..0c050207 100644
--- a/apps/portal/src/components/offers/offerAnalysis/OfferPercentileAnalysisText.tsx
+++ b/apps/portal/src/components/offers/offerAnalysis/OfferPercentileAnalysisText.tsx
@@ -18,14 +18,14 @@ export default function OfferPercentileAnalysisText({
{isSubmission ? 'Your' : "This profile's"} highest offer is from{' '}
{companyName}, which is {percentile.toFixed(1)} percentile
out of {noOfOffers} offers received for the same job title and
- YOE(±1) in the last year.
+ YOE(±1) in the last year in the same location.
) : (
{isSubmission ? 'Your' : 'The'} offer from {companyName} is{' '}
{percentile.toFixed(1)} percentile out of {noOfOffers}{' '}
offers received in {companyName} for the same job title and YOE(±1) in the
- last year.
+ last year in the same location.
);
-}
\ No newline at end of file
+}