Skip to content

Commit

Permalink
fix: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gambinish committed Nov 5, 2024
1 parent 03e047d commit 3612b58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions ui/components/app/assets/token-list/token-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ export default function TokenList({ onTokenClick }: TokenListProps) {
(token: Record<string, any>) => {
const { address } = token;
const balance =
selectedAccountTokenBalancesAcrossChains[chainId]?.[address] ||
'0.00000';
selectedAccountTokenBalancesAcrossChains[chainId]?.[address];

const baseCurrency = marketData[chainId]?.[address]?.currency;

Expand Down
2 changes: 0 additions & 2 deletions ui/pages/asset/components/token-asset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ const TokenAsset = ({ token }: { token: Token }) => {
const iconUrl = tokenData?.iconUrl || tokenDataFromChain?.iconUrl || '';
const aggregators = tokenData?.aggregators;

console.log({ name, chainId, token });

const {
tokensWithBalances,
}: { tokensWithBalances: { string: string; balance: string }[] } =
Expand Down

0 comments on commit 3612b58

Please sign in to comment.