Skip to content

Commit b287df2

Browse files
committed
Fix pyladies room change
1 parent d6bbf01 commit b287df2

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/components/schedule/day.astro

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@ const sessions = day.data.events
119119
})
120120
.sort((a, b) => {
121121
return a!.start.getTime() - b!.start.getTime();
122+
})
123+
.filter((session) => {
124+
// PyLadies workshops displayed on the PyLadies page, not in the talk grid
125+
if (session.title === "Leading Under Pressure") return false;
126+
return true;
122127
}) as Array<ScheduleSession>;
123128
124129
const sessionsByTime: { [key: string]: Array<(typeof sessions)[0]> } = {};

0 commit comments

Comments
 (0)