fixed newCustomerCount / Recruiter count in dash

This commit is contained in:
rockyeverlast
2025-09-10 20:36:15 +05:30
parent 1e7b7347e4
commit 6648cd3bf3

View File

@@ -17,13 +17,13 @@ const SemiDoughnutChart = ({ totalUser }: { totalUser: any }) => {
const recruiterCount =
dataSource.past24hourRecruiterCount ??
dataSource.totalRecruiterCount ??
dataSource.newRecruiterCount ??
dataSource.newRecuiterCount ??
0;
const customerCount =
dataSource.past24hourCustomercount ??
dataSource.totalCustomerCount ??
dataSource.newCustomercount ??
dataSource.newCustomerCount ??
0;