We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e8dd14 commit 04a10deCopy full SHA for 04a10de
1 file changed
src/features/conferences/ConferenceCard.tsx
@@ -9,8 +9,8 @@ export const ConferenceCard = React.memo(function ConferenceCard({
9
conference: HTConference;
10
}) {
11
const start =
12
- toDate(conference.start_date) ?? toDate(conference.start_timestamp);
13
- const end = toDate(conference.end_date) ?? toDate(conference.end_timestamp);
+ toDate(conference.start_timestamp) ?? toDate(conference.start_date);
+ const end = toDate(conference.end_timestamp) ?? toDate(conference.end_date);
14
const range = formatDateRange(start, end, conference.timezone);
15
const tz = tzAbbrev(conference.timezone);
16
0 commit comments