diff --git a/components/JobSection/index.tsx b/components/JobSection/index.tsx index 13e84a9f..e7ec6893 100644 --- a/components/JobSection/index.tsx +++ b/components/JobSection/index.tsx @@ -146,7 +146,7 @@ const JobSection = (props: Props) => { ref={selectRef} /> ) : ( -

{party.job?.name[locale]}

+

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

)}