From cbfc69ae6eb3438297cca294c4a14a220d238793 Mon Sep 17 00:00:00 2001 From: Alina Lytovchenko Date: Tue, 10 Dec 2024 13:24:38 -0800 Subject: [PATCH] fix: issue #392 --- src/components/bounty/BountyMultiplayer.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/components/bounty/BountyMultiplayer.tsx b/src/components/bounty/BountyMultiplayer.tsx index e2a1e08..26f7260 100644 --- a/src/components/bounty/BountyMultiplayer.tsx +++ b/src/components/bounty/BountyMultiplayer.tsx @@ -89,12 +89,13 @@ export default function BountyMultiplayer({ )} {account.address?.toLocaleLowerCase() !== issuer.toLocaleLowerCase() && - !isVoting && - (inProgress && isCurrentUserAParticipant ? ( - - ) : ( - - ))} + !isVoting && + inProgress && + isCurrentUserAParticipant ? ( + + ) : ( + !isVoting && inProgress && + )} ); }