Skip to content

Commit be51aff

Browse files
committed
fix: link to Semantic Nullability talk
1 parent 7940f4f commit be51aff

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/app/conf/2024/_videos.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ export const videos = [
8888
id: "QZZb6Ah4u60",
8989
title: `Build Confidently: How @Catch and Error Handling Pave Way in Field Nullability - Itamar Kestenbaum`,
9090
},
91+
{
92+
id: "zRCxwnpVjlg",
93+
title:
94+
"Semantic Nullability: A Path Toward Safe Non-Null Fields - Jordan Eldredge, Meta",
95+
},
9196
{
9297
id: "4OVAjJx8tno",
9398
title: `Consuming GraphQL in TypeSafe Languages - Anthony Miller, Apollo GraphQL`,

src/app/conf/2024/schedule/[id]/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default function SessionPage({ params }: SessionProps) {
8080
if (!event) {
8181
notFound()
8282
}
83-
83+
console.log("event", event)
8484
// @ts-expect-error -- fixme
8585
event.speakers = (event.speakers || []).map(speaker =>
8686
speakers.find(s => s.username === speaker.username),
@@ -99,9 +99,9 @@ export default function SessionPage({ params }: SessionProps) {
9999
`${eventTitle} ${event.speakers!.map(e => e.name).join(" ")}`,
100100
videos.map(e => e.title),
101101
).bestMatch
102-
102+
console.log("recordingTitle", recordingTitle)
103103
const videoId = videos.find(e => e.title === recordingTitle.target)?.id
104-
104+
console.log("videoId", videoId)
105105
if (!videoId) {
106106
throw new Error(`Video "${recordingTitle.target}" not found`)
107107
}

0 commit comments

Comments
 (0)