From acbc2da09db651069db0719828759d27a0a330f8 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 15 Jan 2023 10:37:51 -0800 Subject: [PATCH] Show no_job string in read-only section --- components/JobSection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')}

)}