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 &&
+ )}
>
);
}