diff --git a/app/landing.jsx b/app/landing.jsx index 3e31875..3d47726 100644 --- a/app/landing.jsx +++ b/app/landing.jsx @@ -794,6 +794,67 @@ export default function Landing() { }} /> + + + {deptList?.map((item) => { + return ( + + { + actionSheetRef.current?.hide(); + return updateSelectedDepartment( + selectedDepartment?.deptId, + item?.deptId + ) + }} + > + + + {item?.dept} + + {item?.primary ? : null} + + {`${item?.deptAbv} - ${departmentTypeMap[item?.type]}`} + + + ); + })} + + ); } \ No newline at end of file