Fix optional error

This commit is contained in:
Justin Edmund 2023-01-28 02:42:39 -08:00
parent 89e1709994
commit da43f80099

View file

@ -750,7 +750,7 @@ const PartyDetails = (props: Props) => {
</div>
{readOnly}
{editable}
{remixes.length > 0 ? remixSection() : ''}
{remixes && remixes.length > 0 ? remixSection() : ''}
{deleteAlert()}
</section>
)