Skip to content

Commit 58df99b

Browse files
committed
remove logs
1 parent be51aff commit 58df99b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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-
console.log("event", event)
83+
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-
console.log("recordingTitle", recordingTitle)
102+
103103
const videoId = videos.find(e => e.title === recordingTitle.target)?.id
104-
console.log("videoId", videoId)
104+
105105
if (!videoId) {
106106
throw new Error(`Video "${recordingTitle.target}" not found`)
107107
}

0 commit comments

Comments
 (0)