From ff65b6e281daae114f099fad726ebbb726bf644e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 1 Mar 2022 19:54:39 -0800 Subject: [PATCH] Fix party name and description not actually displaying --- components/PartyDetails/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/PartyDetails/index.tsx b/components/PartyDetails/index.tsx index 3ee67f8b..76412763 100644 --- a/components/PartyDetails/index.tsx +++ b/components/PartyDetails/index.tsx @@ -98,9 +98,9 @@ const PartyDetails = (props: Props) => { const readOnly = (
- { (appSnapshot.party.name) ?

appSnapshot.party.name

: '' } + { (appSnapshot.party.name) ?

{appSnapshot.party.name}

: '' } { (appSnapshot.party.raid) ?
{appSnapshot.party.raid.name.en}
: '' } - { (appSnapshot.party.description) ?

appSnapshot.party.description

: '' } + { (appSnapshot.party.description) ?

{appSnapshot.party.description}

: '' }
)