Cell title changed to EMP ID

This commit is contained in:
rockyeverlast
2025-09-12 21:11:15 +05:30
parent 44f34490a0
commit df62dcda64

View File

@@ -20,7 +20,7 @@ import SearchComponent from "../../components/SearchComponent"
const tableHeadRow = [
"Sr. No",
"Id",
"Emp ID",
"First Name",
"last Name",
"DOB",
@@ -130,7 +130,7 @@ const SubAdmin = () => {
const managepost = filteredData?.map((agency: any, index: number) => ({
'id': agency.id,
"Sr. No": index + 1,
"Id": agency.unique_id,
"Emp ID": agency.unique_id,
"First Name": agency.first_name,
"last Name": agency.last_name,
"DOB": formatDateOfBirth(agency.date_of_birth),