Skip to content

Commit

Permalink
Merge pull request #489 from gayatrigt/patch-1
Browse files Browse the repository at this point in the history
fix: "join bounty logic"
  • Loading branch information
picsoritdidnthappen authored Jan 20, 2025
2 parents 2f2bb0b + f28b239 commit c250bf8
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 c250bf8

Please sign in to comment.