Skip to content

Commit

Permalink
fix nova tvl
Browse files Browse the repository at this point in the history
  • Loading branch information
zkLeonardo committed Jul 22, 2024
1 parent 95ad79d commit 8a0b8f3
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 8a0b8f3

Please sign in to comment.