Skip to content

Commit

Permalink
remove auto claim button for vesting
Browse files Browse the repository at this point in the history
  • Loading branch information
ionleahu committed Oct 15, 2024
1 parent 6bd38ae commit 2fd3671
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/claim/claim-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export const ClaimCard: React.FC<ClaimCardProps> = ({
}) => {
const { balance, tge, price, address } = investmentInfo;
const parsedBalance = parseHumanReadable(balance, 18, 1);
const hasTGEStarted = isTGEStarted(vestingInfo?.dateStart);
const hasTGEStarted = false;
// const hasTGEStarted = isTGEStarted(vestingInfo?.dateStart);
const hasVested = vestingInfo && vestingInfo?.tokensForVesting > 0n;

const claimValue = calculateClaimAmount(balance, tge);
Expand Down

0 comments on commit 2fd3671

Please sign in to comment.