We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e1009 commit 583199aCopy full SHA for 583199a
1 file changed
src/app/day/2026/components/schedule/schedule-list.tsx
@@ -143,8 +143,7 @@ export function ScheduleList({
143
144
const firstDay = Object.values(filteredSessions)[0]
145
// if the first day has less than 3 sessions, it's probably a "day zero" with extra events or workshops
146
- const firstDayIsDayZero =
147
- firstDay != null && Object.keys(firstDay).length < 3
+ const firstDayIsDayZero = firstDay != null && Object.keys(firstDay).length < 3
148
const startIndex = firstDayIsDayZero ? 0 : 1
149
150
const { getTimeMarker } = useCurrentTimeMarker(conferenceStart, conferenceEnd)
0 commit comments