Skip to content

Commit

Permalink
Merge pull request #336 from zkLinkProtocol/fix/nova-tvl
Browse files Browse the repository at this point in the history
Fix/nova tvl
  • Loading branch information
MickWang authored Jul 22, 2024
2 parents 95ad79d + f5a1f49 commit 0e25ae7
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/components/DashboardS2/Tabs/Assets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -511,11 +511,16 @@ export default function Assets(props: IAssetsTableProps) {
<div className="col-line"></div>

<div className="list-content-item text-center">
{/* {formatNumberWithUnit(item?.totalAmount)}
<span className="text-gray">
({formatNumberWithUnit(item?.totalTvl, "$")})
</span> */}
-
{item.symbol === "ZKL" ? (
"-"
) : (
<>
{formatNumberWithUnit(item?.totalAmount)}
<span className="text-gray">
({formatNumberWithUnit(item?.totalTvl, "$")})
</span>
</>
)}
</div>
<div className="col-line"></div>

Expand Down

0 comments on commit 0e25ae7

Please sign in to comment.