Skip to content

Commit 84f73e4

Browse files
committed
fix:fixes prettier coding standard
1 parent 5098d3b commit 84f73e4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

client/src/components/Patient/PatientAppointments/AppointmentCard.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ const AppointmentCard = ({ appointment, prescriptionStatus, onAppointmentClick }
8282
<div className="flex items-start justify-between mb-4">
8383
<div className="flex items-center gap-3">
8484
<div className="w-12 h-12 bg-gradient-to-br from-blue-500 to-indigo-600 rounded-full flex items-center justify-center text-white font-semibold">
85-
<img src={appointment.doctorId?.profilePicture} alt={appointment.doctorId?.firstName?.[0]} />
85+
<img
86+
src={appointment.doctorId?.profilePicture}
87+
alt={appointment.doctorId?.firstName?.[0]}
88+
/>
8689
</div>
8790
<div>
8891
<h3 className="font-semibold text-gray-900 group-hover:text-blue-600 transition-colors">

0 commit comments

Comments
 (0)