Skip to content

Commit 583199a

Browse files
committed
Run format
1 parent e1e1009 commit 583199a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/app/day/2026/components/schedule/schedule-list.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ export function ScheduleList({
143143

144144
const firstDay = Object.values(filteredSessions)[0]
145145
// 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
146+
const firstDayIsDayZero = firstDay != null && Object.keys(firstDay).length < 3
148147
const startIndex = firstDayIsDayZero ? 0 : 1
149148

150149
const { getTimeMarker } = useCurrentTimeMarker(conferenceStart, conferenceEnd)

0 commit comments

Comments
 (0)