Fixed regression introduced when date.format() was removed (#5265)
parent
9f362db60c
commit
ce04f78a56
|
@ -58,7 +58,7 @@ const AvailableTimes: FC<AvailableTimesProps> = ({
|
|||
{nameOfDay(i18n.language, Number(date.format("d")), "short")}
|
||||
</span>
|
||||
<span className="text-bookinglight font-medium">
|
||||
, {date.toDate().toLocaleString(i18n.language, { month: "long", day: "numeric" })}
|
||||
, {date.toDate().toLocaleString(i18n.language, { month: "long" })} {date.format(" D ")}
|
||||
</span>
|
||||
</div>
|
||||
<div className="ml-auto">
|
||||
|
|
Loading…
Reference in New Issue