Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 46b9654

Browse files
committed
fix: filter out transitions from the schedule
1 parent 7c27855 commit 46b9654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/client/src/routes/Main/Home/Schedule.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Schedule({ date }: { date?: string }) {
2323
return (
2424
<Flex direction={"column"}>
2525
{periods
26-
.filter((period) => period.name !== "Transition")
26+
.filter((period) => !period.name.startsWith("Transition"))
2727
.map((period) => {
2828
const startTime = DateTime.fromISO(period.startTime);
2929
const endTime = DateTime.fromISO(period.endTime);

0 commit comments

Comments
 (0)