From da43f800994681e72bb8c6686da78a928abe9a1b Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 02:42:39 -0800 Subject: [PATCH] Fix optional error --- components/PartyDetails/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/PartyDetails/index.tsx b/components/PartyDetails/index.tsx index 37fd2514..e2e4b2d0 100644 --- a/components/PartyDetails/index.tsx +++ b/components/PartyDetails/index.tsx @@ -750,7 +750,7 @@ const PartyDetails = (props: Props) => { {readOnly} {editable} - {remixes.length > 0 ? remixSection() : ''} + {remixes && remixes.length > 0 ? remixSection() : ''} {deleteAlert()} )