Skip to content

Commit f64e57f

Browse files
committed
feat: Update event time formatting in EventsCarousel component
1 parent bf526a1 commit f64e57f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/breakpoint/src/components/sections/EventsCarousel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function formatEventMeta(
6565
: `${startParts.day} ${startParts.month}${endParts.day} ${endParts.month}`;
6666

6767
return {
68-
time: null,
68+
time: end ? `${timeFormat.format(start)}${timeFormat.format(end)}` : null,
6969
date: `${dayRange}, ${endParts.year}`.toUpperCase(),
7070
};
7171
}

0 commit comments

Comments
 (0)