diff --git a/src/components/pages/wallet/assets/wallet-assets.tsx b/src/components/pages/wallet/assets/wallet-assets.tsx index a6a458d0..ef131007 100644 --- a/src/components/pages/wallet/assets/wallet-assets.tsx +++ b/src/components/pages/wallet/assets/wallet-assets.tsx @@ -4,6 +4,7 @@ import LinkCardanoscan from "@/components/common/link-cardanoscan"; import { useWalletsStore } from "@/lib/zustand/wallets"; import type { Wallet } from "@/types/wallet"; import { ArrowUpRight } from "lucide-react"; +import { truncateTokenSymbol, numberWithCommas } from "@/utils/strings"; import Link from "next/link"; import { useEffect, useMemo, useState } from "react"; import Image from "next/image"; @@ -75,12 +76,12 @@ export default function WalletAssets({ appWallet }: { appWallet: Wallet }) { return (
-
+
{imageSrc ? (
{isImageIpfs ? ( ) : ( -
+
-
-

{name}

- +
+

+ {truncateTokenSymbol(name)} +

+
-
-

{quantity}

-

${ticker}

+
+

+ {numberWithCommas(quantity)} +

+ {ticker && ( +

+ ${ticker} +

+ )}
);