Skip to content

Commit

Permalink
SOV-2957: 4 year vesting not respecting extendedDuration (#2570)
Browse files Browse the repository at this point in the history
fix: 4 year vesting not respecting extendedDuration
  • Loading branch information
soulBit authored Aug 7, 2023
1 parent 591ea66 commit 7c64458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/hooks/staking/useGetUnlockedVesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export function useGetUnlockedVesting(

if (
Math.round(Date.now() / 1e3) <=
Number(startDate) + extendedDuration
Number(startDate) + Number(extendedDuration)
) {
value = '0';
}
Expand Down

0 comments on commit 7c64458

Please sign in to comment.