Fix optional error
This commit is contained in:
parent
89e1709994
commit
da43f80099
1 changed files with 1 additions and 1 deletions
|
|
@ -750,7 +750,7 @@ const PartyDetails = (props: Props) => {
|
||||||
</div>
|
</div>
|
||||||
{readOnly}
|
{readOnly}
|
||||||
{editable}
|
{editable}
|
||||||
{remixes.length > 0 ? remixSection() : ''}
|
{remixes && remixes.length > 0 ? remixSection() : ''}
|
||||||
{deleteAlert()}
|
{deleteAlert()}
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue