diff --git a/components/JobSection/index.tsx b/components/JobSection/index.tsx index f88a4016..e9323597 100644 --- a/components/JobSection/index.tsx +++ b/components/JobSection/index.tsx @@ -197,10 +197,14 @@ const JobSection = (props: Props) => { /> ) : (
- {party.job.name[locale]} + {party.job ? ( + {party.job.name[locale]} + ) : ( + '' + )}

{party.job ? party.job.name[locale] : t('no_job')}

)}