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
+}