Skip to content

Commit

Permalink
fix: "join bounty logic"
Browse files Browse the repository at this point in the history
  • Loading branch information
gayatrigt committed Jan 20, 2025
1 parent 32f6fe5 commit f28b239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/frame/claims/claims.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ const Claims: React.FC<ClaimsProps> = ({ bountyId, chainId }) => {

const showCreateClaimButton = isConnected && !hasAcceptedClaim;

const isOpen = true;
const isVoting = false;
const isOpen = bounty?.status.is_multiplayer;
const isVoting = bounty?.status.is_voting;

console.log('b', bounty);

Expand Down

0 comments on commit f28b239

Please sign in to comment.