Skip to content

Commit

Permalink
Merge pull request #251 from mrgnlabs/j/fix-lst-tvl-calc
Browse files Browse the repository at this point in the history
fix: don't multiply tvl with LST price
  • Loading branch information
jkbpvsc authored Sep 28, 2023
2 parents 59041aa + da69d99 commit d072a01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const StakingStats: FC = () => {
TVL
</Typography>
<Typography color="#fff" className="font-aeonik font-[500] text-xl" component="div">
{lstData && solUsdValue ? `$${numeralFormatter(lstData.tvl * lstData.lstSolValue * solUsdValue)}` : "-"}
{lstData && solUsdValue ? `$${numeralFormatter(lstData.tvl * solUsdValue)}` : "-"}
</Typography>
</div>

Expand Down

0 comments on commit d072a01

Please sign in to comment.