From 95b29219998e51f664369d5df5aa7eec7cae7d13 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Sun, 6 Oct 2024 17:55:18 -0400 Subject: [PATCH] Update landing.jsx --- app/landing.jsx | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) 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