Skip to content

Commit 9c0dc9a

Browse files
committed
Merge branch 'add-staff' into devdev
2 parents 84828a6 + 1ef5bd6 commit 9c0dc9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/pages/program/talks/[id].tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { GetServerSideProps, GetServerSidePropsContext, NextPage } from 'next'
22
import React from 'react'
33
import { LocalePage } from '../../../interfaces/PageProps'
4-
import { ISpeaker, ITalkItem } from '../../../interfaces/IProgram'
4+
import { IPerson, ITalkItem } from '../../../interfaces/IProgram'
55
import { getTalkById } from '../../api/program'
66
import PageTitle from '../../../components/core/PageTitle'
77
import { 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

0 commit comments

Comments
 (0)