File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,11 @@ export const videos = [
88
88
id : "QZZb6Ah4u60" ,
89
89
title : `Build Confidently: How @Catch and Error Handling Pave Way in Field Nullability - Itamar Kestenbaum` ,
90
90
} ,
91
+ {
92
+ id : "zRCxwnpVjlg" ,
93
+ title :
94
+ "Semantic Nullability: A Path Toward Safe Non-Null Fields - Jordan Eldredge, Meta" ,
95
+ } ,
91
96
{
92
97
id : "4OVAjJx8tno" ,
93
98
title : `Consuming GraphQL in TypeSafe Languages - Anthony Miller, Apollo GraphQL` ,
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export default function SessionPage({ params }: SessionProps) {
80
80
if ( ! event ) {
81
81
notFound ( )
82
82
}
83
-
83
+ console . log ( "event" , event )
84
84
// @ts -expect-error -- fixme
85
85
event . speakers = ( event . speakers || [ ] ) . map ( speaker =>
86
86
speakers . find ( s => s . username === speaker . username ) ,
@@ -99,9 +99,9 @@ export default function SessionPage({ params }: SessionProps) {
99
99
`${ eventTitle } ${ event . speakers ! . map ( e => e . name ) . join ( " " ) } ` ,
100
100
videos . map ( e => e . title ) ,
101
101
) . bestMatch
102
-
102
+ console . log ( "recordingTitle" , recordingTitle )
103
103
const videoId = videos . find ( e => e . title === recordingTitle . target ) ?. id
104
-
104
+ console . log ( "videoId" , videoId )
105
105
if ( ! videoId ) {
106
106
throw new Error ( `Video "${ recordingTitle . target } " not found` )
107
107
}
You can’t perform that action at this time.
0 commit comments