Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bergeron committed Nov 15, 2024
1 parent 63e01a0 commit 527962b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/hooks/useMultichainAccountTotalFiatBalance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export const useMultichainAccountTotalFiatBalance = (
tokensWithBalances: {
address: string;
symbol: string;
decimals: string;
isERC721: boolean;
image: string;
decimals: number;
isERC721?: boolean;
image?: string;
}[];
totalWeiBalance?: string;
totalBalance?: string;
Expand Down
2 changes: 2 additions & 0 deletions ui/hooks/useTokensWithFiltering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ export const useTokensWithFiltering = (
const shouldHideZeroBalanceTokens = useSelector(
getShouldHideZeroBalanceTokens,
);

// todo
const {
tokensWithBalances: erc20TokensWithBalances,
}: { tokensWithBalances: TokenWithBalance[] } = useTokenTracker({
Expand Down

0 comments on commit 527962b

Please sign in to comment.