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'
@@ -34,7 +34,7 @@ const TalkListDetail: NextPage = (props: TalkListDetailProps) => {
3434 const { t } = useTranslation ( )
3535
3636 const item : ITalkItem = props [ props . locale ]
37- const speaker : ISpeaker = {
37+ const speaker : IPerson = {
3838 image : item . speaker_profile_img ?? DEFAULT_PROFILE_PATH ,
3939 name : item . user_name ,
4040 introduction : item . introduction
You can’t perform that action at this time.
0 commit comments