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}

: '' }
)