Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Fix for already claimed button on claim successful screen (#2478)
Browse files Browse the repository at this point in the history
* Using latest contract and deployment info for rinkeby

* Fix for already claimed button on claim successful screen

* Revert "Merge branch 'valid-rinkeby-claims-on-master' into 2416/already-claimed-button-fix"

This reverts commit c84734c, reversing
changes made to a6a8995.

Co-authored-by: Leandro <[email protected]>
  • Loading branch information
nenadV91 and Leandro authored Feb 24, 2022
1 parent af28821 commit 6be36ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom/pages/Claim/FooterNavButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function FooterNavButtons({
)
}
// Already claimed
else if (isClaimed) {
else if (isClaimed && claimStatus !== ClaimStatus.CONFIRMED) {
buttonContent = (
<ButtonPrimary ref={buttonRef} onClick={toggleWalletModal} disabled>
<Trans>Already claimed</Trans>
Expand Down

0 comments on commit 6be36ca

Please sign in to comment.