File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/app/conf/2024/speakers/[id] Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { speakers, schedule } from "@/app/conf/2024/_data"
12
12
import { ChevronLeftIcon } from "@/icons"
13
13
import NextLink from "next/link"
14
14
import { eventsColors } from "../../utils"
15
+ import { filterCategories2024 } from '@/app/conf/_components/schedule/filter-categories'
15
16
16
17
type SpeakerProps = { params : { id : string } }
17
18
@@ -47,7 +48,7 @@ export default function SpeakerPage({ params }: SpeakerProps) {
47
48
. map ( s => ( {
48
49
...s ,
49
50
speakers : s . speakers ! . map ( s =>
50
- speakers . find ( speaker => speaker . username === s . username ) ,
51
+ speakers . find ( speaker => speaker . username === s . username ) ! ,
51
52
) ,
52
53
} ) )
53
54
@@ -105,11 +106,11 @@ export default function SpeakerPage({ params }: SpeakerProps) {
105
106
/>
106
107
</ div >
107
108
< h1 className = "conf-heading mb-10" > Sessions</ h1 >
108
- { /* @ts -expect-error */ }
109
109
< SessionList
110
+ showFilter = { false }
111
+ filterCategories = { filterCategories2024 }
110
112
eventsColors = { eventsColors }
111
113
year = "2024"
112
- showFilter = { false }
113
114
scheduleData = { s }
114
115
/>
115
116
</ div >
You can’t perform that action at this time.
0 commit comments