We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020cc07 commit 3ff23ccCopy full SHA for 3ff23cc
src/app/conf/2025/_data.ts
@@ -4,7 +4,6 @@ import { SchedSpeaker, ScheduleSession } from "@/app/conf/2023/types"
4
import { readSpeakers } from "../_api/sched-data"
5
6
export const schedule: ScheduleSession[] = require("../../../../scripts/sync-sched/schedule-2025.json")
7
-export const speakers: SchedSpeaker[] = readSpeakers(2025)
8
9
type SpeakerUsername = SchedSpeaker["username"]
10
@@ -20,6 +19,10 @@ for (const session of schedule) {
20
19
}
21
22
+export const speakers: SchedSpeaker[] = readSpeakers(2025).filter(speaker =>
23
+ speakerSessions.has(speaker.username),
24
+)
25
+
26
export const previousEditionSessions = new Map<
27
SpeakerUsername,
28
ScheduleSession[]
0 commit comments