There was an error while loading. Please reload this page.
1 parent d6bbf01 commit b287df2Copy full SHA for b287df2
1 file changed
src/components/schedule/day.astro
@@ -119,6 +119,11 @@ const sessions = day.data.events
119
})
120
.sort((a, b) => {
121
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;
127
}) as Array<ScheduleSession>;
128
129
const sessionsByTime: { [key: string]: Array<(typeof sessions)[0]> } = {};
0 commit comments