diff --git a/components/Job/JobSheet.tsx b/components/Job/JobSheet.tsx index 5326733..8c84124 100644 --- a/components/Job/JobSheet.tsx +++ b/components/Job/JobSheet.tsx @@ -33,7 +33,7 @@ export default function JobSheetComp({ role_description, job_type, location, - + salary_disclosed, salary_min, salary_max, experience_level, @@ -78,8 +78,11 @@ export default function JobSheetComp({
- ₹{salary_min / 1000}k -{" "} - ₹{Math.round(salary_max / 1000)}k/month + {salary_disclosed && salary_min && salary_max + ? ` ₹ ${Math.round(salary_min / 1000)}k - ₹ ${Math.round( + salary_max / 1000 + )}k/month` + : "Not disclosed"}