From 1b2d0eaa0b6cc0c98aea680597e9a76d8da0785d Mon Sep 17 00:00:00 2001 From: Sir Blob <76974209+GamerBoss101@users.noreply.github.com> Date: Sun, 26 Jan 2025 07:33:47 -0500 Subject: [PATCH] Css update --- .../(panels)/suite/doctor/patients/page.jsx | 48 +++++++++---------- 1 file changed, 22 insertions(+), 26 deletions(-) diff --git a/src/app/(panels)/suite/doctor/patients/page.jsx b/src/app/(panels)/suite/doctor/patients/page.jsx index 3143076..1912cdc 100644 --- a/src/app/(panels)/suite/doctor/patients/page.jsx +++ b/src/app/(panels)/suite/doctor/patients/page.jsx @@ -70,32 +70,28 @@ export default function PatientsDOC() {

Patients

- {userData && userData.role === 'caregiver' && ( -
-
- {finalPatients.map(patient => ( - -
-
-

{patient.name}

-

Age: {patient.age}

-

Last Checkup: {new Date(patient.lastCheckup).toLocaleDateString()}

-
- - - -
- - - -
- ))} -
-
- )} +
+ {finalPatients.map(patient => ( + +
+
+

{patient.name}

+

Age: {patient.age}

+

Last Checkup: {new Date(patient.lastCheckup).toLocaleDateString()}

+
+ + + +
+ + + +
+ ))} +
)