We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6a0d5 commit b06a791Copy full SHA for b06a791
ui/components/app/assets/defi-list/defi-list.tsx
@@ -85,6 +85,7 @@ export default function DefiList({ onClick }: DefiListProps) {
85
marketValue: formatCurrencyWithMinThreshold(marketValue, 'USD'),
86
chainId: chainId as Hex,
87
iconGroup,
88
+ tokenFiatAmount: marketValue,
89
};
90
}),
91
);
@@ -99,6 +100,10 @@ export default function DefiList({ onClick }: DefiListProps) {
99
100
},
101
]);
102
103
+ console.log('DEBUG DEFI ASSETS', {
104
+ filteredAssets,
105
+ tokenSortConfig,
106
+ });
107
// sort filtered tokens based on the tokenSortConfig in state
108
return sortAssets(filteredAssets, tokenSortConfig);
109
}, [
0 commit comments