diff --git a/src/shared/claim-button-erc20.tsx b/src/shared/claim-button-erc20.tsx index 20d16a8..94f1e66 100644 --- a/src/shared/claim-button-erc20.tsx +++ b/src/shared/claim-button-erc20.tsx @@ -316,12 +316,20 @@ export const ERC20ClaimButton: React.FC = ({ - {isLoading ? "00" : numberClaimed} - {" "} - {numberTotal !== "" && "/ "} - - {isLoading ? "00" : numberTotal} + {isLoading + ? "00" + : utils.formatEther(BigNumber.from(numberClaimed || 0))} {" "} + {numberTotal !== "" && ( + <> + /{" "} + + {isLoading + ? "00" + : utils.formatEther(BigNumber.from(numberTotal || 0))} + {" "} + + )} minted