Skip to content

Commit

Permalink
(fix) O3-2693 Appointment Creation Form DatePicker uses incorrect min…
Browse files Browse the repository at this point in the history
…Date format (#919)
  • Loading branch information
chibongho committed Jan 4, 2024
1 parent 59ac667 commit 17b2bb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const AppointmentForm: React.FC<AppointmentFormProps> = ({ appointment, patientU
);

const appointmentService = services?.find(({ uuid }) => uuid === patientAppointment.serviceUuid);
const today = dayjs().startOf('day').format();
const today = dayjs().startOf('day').format('DD/MM/YYYY');

useEffect(() => {
if (locations?.length && sessionUser) {
Expand Down

0 comments on commit 17b2bb0

Please sign in to comment.