Skip to content

Commit

Permalink
Merge pull request #300 from stabilitydao/4-vault
Browse files Browse the repository at this point in the history
Chains tvl fix
  • Loading branch information
DevTeaLeaf authored Nov 5, 2024
2 parents be8ee41 + 7f7b4f4 commit 1a8f69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Platform/components/Chains/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ const Chains = (): JSX.Element => {
</div>
</td>
<td className="px-4 py-3 text-[15px] text-left whitespace-nowrap w-[100px] xl:w-[120px]">
{formatNumber(tvl, "abbreviate")}
{tvl ? formatNumber(tvl, "abbreviate") : ""}
</td>
{/* <td className="px-4 py-3 text-[12px]">
<div className="flex">
Expand Down

0 comments on commit 1a8f69f

Please sign in to comment.