From f6f10e79706ef022b26bafbe267b4c799d64f7a9 Mon Sep 17 00:00:00 2001 From: rithviknishad Date: Fri, 31 Jan 2025 17:33:15 +0530 Subject: [PATCH] Remove index-based numbering from appointments table row Fixes #10307 --- src/components/Patient/PatientDetailsTab/Appointments.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Patient/PatientDetailsTab/Appointments.tsx b/src/components/Patient/PatientDetailsTab/Appointments.tsx index 8b6228c4125..069d2f0d070 100644 --- a/src/components/Patient/PatientDetailsTab/Appointments.tsx +++ b/src/components/Patient/PatientDetailsTab/Appointments.tsx @@ -93,10 +93,9 @@ export const Appointments = (props: PatientProps) => { ) : appointments.length ? ( - appointments.map((appointment, i) => ( + appointments.map((appointment) => ( - {i + 1} {appointment.token_slot.availability.name}