From 54d67260c9d6c5bd2dad7bf8947cd27c6bd90b9c Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 20 Jan 2023 20:42:13 -0800 Subject: [PATCH] Fix party title when Untitled --- components/PartyDetails/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/PartyDetails/index.tsx b/components/PartyDetails/index.tsx index ffc3f99e..ee7440df 100644 --- a/components/PartyDetails/index.tsx +++ b/components/PartyDetails/index.tsx @@ -632,9 +632,7 @@ const PartyDetails = (props: Props) => {
-

- {name !== '' ? name : 'Untitled'} -

+

{name ? name : t('no_title')}

{renderUserBlock()} {party.raid ? linkedRaidBlock(party.raid) : ''}