From b287df2bfbcbdd1192747aa9f3503fa519a0960b Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 16 Jul 2026 14:26:45 +0200 Subject: [PATCH] Fix pyladies room change --- src/components/schedule/day.astro | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/schedule/day.astro b/src/components/schedule/day.astro index 1eccc4d15..8bfb63bea 100644 --- a/src/components/schedule/day.astro +++ b/src/components/schedule/day.astro @@ -119,6 +119,11 @@ const sessions = day.data.events }) .sort((a, b) => { return a!.start.getTime() - b!.start.getTime(); + }) + .filter((session) => { + // PyLadies workshops displayed on the PyLadies page, not in the talk grid + if (session.title === "Leading Under Pressure") return false; + return true; }) as Array; const sessionsByTime: { [key: string]: Array<(typeof sessions)[0]> } = {};