From 4ddcec354484e730f7af3db70efd4a7a9aef7abc Mon Sep 17 00:00:00 2001 From: kashyap1ankit Date: Mon, 11 Nov 2024 23:49:49 +0530 Subject: [PATCH] fixed build issue --- components/Job/JobSheet.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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"}