File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
frontend/pages/program/talks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import { GetServerSideProps , GetServerSidePropsContext , NextPage } from 'next'
22import React from 'react'
33import { LocalePage } from '../../../interfaces/PageProps'
4- import { ISpeaker , ITalkItem } from '../../../interfaces/IProgram'
4+ import { IPerson , ITalkItem } from '../../../interfaces/IProgram'
55import { getTalkById } from '../../api/program'
66import PageTitle from '../../../components/core/PageTitle'
77import { useTranslation } from 'react-i18next'
@@ -37,7 +37,7 @@ const TalkListDetail: NextPage = (props: TalkListDetailProps) => {
3737 const { t } = useTranslation ( )
3838
3939 const item : ITalkItem = props [ props . locale ]
40- const speaker : ISpeaker = {
40+ const speaker : IPerson = {
4141 image : item . speaker_profile_img ?? DEFAULT_PROFILE_PATH ,
4242 name : item . user_name ,
4343 introduction : item . introduction
You can’t perform that action at this time.
0 commit comments