Skip to content

Commit

Permalink
fix: don't multiply tvl with LST price
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbpvsc committed Sep 28, 2023
1 parent b461caf commit da69d99
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 da69d99

Please sign in to comment.