From d4a3e50ac0b2c52e217de0bfab3e3691bf5c6669 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Mon, 10 Jul 2023 17:18:27 +0200 Subject: [PATCH] Round token supply number in token list --- .changelog/703.trivial.md | 1 + src/app/components/Tokens/TokenList.tsx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .changelog/703.trivial.md diff --git a/.changelog/703.trivial.md b/.changelog/703.trivial.md new file mode 100644 index 000000000..628e17d56 --- /dev/null +++ b/.changelog/703.trivial.md @@ -0,0 +1 @@ +Round token supply number in token list diff --git a/src/app/components/Tokens/TokenList.tsx b/src/app/components/Tokens/TokenList.tsx index 9c964b57b..f932c3440 100644 --- a/src/app/components/Tokens/TokenList.tsx +++ b/src/app/components/Tokens/TokenList.tsx @@ -17,6 +17,7 @@ import { FC } from 'react' import Typography from '@mui/material/Typography' import { COLORS } from '../../../styles/theme/colors' import { SxProps } from '@mui/material/styles' +import { RoundedBalance } from '../RoundedBalance' type TokensProps = { tokens?: EvmToken[] @@ -129,7 +130,7 @@ export const TokenList = (props: TokensProps) => { align: TableCellAlign.Right, }, { - content: token.total_supply, + content: , key: 'supply', align: TableCellAlign.Right, },