Skip to content

Commit

Permalink
refactor(develop_dashboard): change USDT logo
Browse files Browse the repository at this point in the history
  • Loading branch information
JoylimJY committed Sep 30, 2022
1 parent 9f42e12 commit 8bc4578
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/assets/logos/coins/tether-usdt-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 21 additions & 3 deletions src/pages/Portfolio/CoinsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,20 @@ const CoinData: {
wallet: number;
weight: number;
}[] = [
{ coin: 'USDT', price: 1.0, pool: 219.56, wallet: 988401.19, weight: 0.1953 },
{ coin: 'BUSD', price: 1.0, pool: 633.15, wallet: 59762.0, weight: 0.5632 },
{
coin: 'USDT',
price: 1.0,
pool: 219.56,
wallet: 988401.19,
weight: 0.1953,
},
{
coin: 'BUSD',
price: 1.0,
pool: 633.15,
wallet: 59762.0,
weight: 0.5632,
},
{
coin: 'ETH',
price: 1333.12,
Expand All @@ -25,7 +37,13 @@ const CoinData: {
wallet: 99872.09,
weight: 97.7003,
},
{ coin: 'BNB', price: 278.61, pool: 2.23, wallet: 5.75, weight: 0.0019 },
{
coin: 'BNB',
price: 278.61,
pool: 2.23,
wallet: 5.75,
weight: 0.0019,
},
];

const CoinsTable = () => {
Expand Down

0 comments on commit 8bc4578

Please sign in to comment.