Skip to content

Commit 073ff42

Browse files
committed
Extract the Date String
1 parent bcc099e commit 073ff42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/esm-appointments-app/src/workload/workload.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const Workload: React.FC<WorkloadProps> = ({ selectedService, appointmentDate, o
3131
<div className={styles.workLoadContainer}>
3232
<MonthlyCalendarView
3333
calendarWorkload={monthlyCalendarWorkload}
34-
dateToDisplay={parseDate(appointmentDate.toISOString())}
34+
dateToDisplay={parseDate(appointmentDate.toISOString().split('T')[0])}
3535
onDateClick={handleDateClick}
3636
/>
3737
</div>

0 commit comments

Comments
 (0)