Fix party name and description not actually displaying

This commit is contained in:
Justin Edmund 2022-03-01 19:54:39 -08:00
parent 538e61bc12
commit ff65b6e281

View file

@ -98,9 +98,9 @@ const PartyDetails = (props: Props) => {
const readOnly = (
<section className={readOnlyClasses}>
{ (appSnapshot.party.name) ? <h1>appSnapshot.party.name</h1> : '' }
{ (appSnapshot.party.name) ? <h1>{appSnapshot.party.name}</h1> : '' }
{ (appSnapshot.party.raid) ? <div className="Raid">{appSnapshot.party.raid.name.en}</div> : '' }
{ (appSnapshot.party.description) ? <p>appSnapshot.party.description</p> : '' }
{ (appSnapshot.party.description) ? <p>{appSnapshot.party.description}</p> : '' }
</section>
)