Skip to content

Commit

Permalink
fix: delApy
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefMomota committed Jul 25, 2023
1 parent e75c857 commit 71443fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const LockedBenefits = () => {

const lockedApy = useMemo(() => getLockedApy(secondDuration), [getLockedApy, secondDuration])
const boostFactor = useMemo(() => getBoostFactor(secondDuration), [getBoostFactor, secondDuration])
const delApy = useMemo(() => new BigNumber(boostFactor).div(boostFactor).toNumber(), [boostFactor])
const delApy = useMemo(() => new BigNumber(lockedApy).div(boostFactor).toNumber(), [lockedApy, boostFactor])

const iCakeTooltipComponent = () => (
<>
Expand Down

0 comments on commit 71443fa

Please sign in to comment.