+
Upcoming
+ {upcomingDates?.length > 0 ? (
+
+ {upcomingDates?.map((date) => {
+ const isSameDay = dayjs(date).isSame(dayjs(value), "day");
+ const key = dayjs(date).format();
+ return (
+
{
+ handleDayClick(date, {}, event);
+ handleMonthChange(date);
+ }}
+ >
+ {dayjs(date).format("ddd DD MMMM")}
+
+ );
+ })}
+
+ ) : (
+
+ There is no future availability for this product.
+
+ )}
+
) : null}
- {isRangeVariant ? (
-