Skip to content

Commit

Permalink
Merge pull request #16 from web3wagers/dev
Browse files Browse the repository at this point in the history
Mainnet hotfix
  • Loading branch information
adrianvrj authored Dec 21, 2024
2 parents 53462a3 + 050d385 commit b4cdabe
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion components/modules/Fund/Fund.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,18 @@ const Fund = () => {
voted={fund.voted}
/>
)}
{Number(fund.state) === 2 || Number(fund.state) === 3 && !isOwner && (
{Number(fund.state) === 2 || Number(fund.state) === 3 && !isOwner && (
<>
<FundDonate
currentBalance={fund.currentBalance}
goal={fund.goal}
addr={fund.addr}
name={fund.name}
icon={starknetlogo}
/>
</>
)}
{Number(fund.state) === 2 && isOwner && (
<>
<FundDonate
currentBalance={fund.currentBalance}
Expand Down

0 comments on commit b4cdabe

Please sign in to comment.