File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,6 @@ export default function Balances() {
310
310
? getIronAsset . data . verification . logoURI
311
311
: undefined
312
312
}
313
- forceHideBalance = { hideBalances }
314
313
/>
315
314
316
315
{ /* Custom Assets */ }
@@ -338,7 +337,6 @@ export default function Balances() {
338
337
? asset . verification . logoURI
339
338
: undefined
340
339
}
341
- forceHideBalance = { hideBalances }
342
340
/>
343
341
) ;
344
342
} ) }
Original file line number Diff line number Diff line change @@ -8,17 +8,13 @@ export function AssetRow({
8
8
amount,
9
9
verified,
10
10
image,
11
- forceHideBalance,
12
11
} : {
13
12
name : string ;
14
13
amount : string ;
15
14
verified : boolean ;
16
15
image ?: string ;
17
- forceHideBalance ?: boolean ;
18
16
} ) {
19
- const hideBalancesGlobal = useHideBalances ( ) ;
20
- const hideBalances =
21
- forceHideBalance !== undefined ? forceHideBalance : hideBalancesGlobal ;
17
+ const hideBalances = useHideBalances ( ) ;
22
18
23
19
return (
24
20
< Card style = { styles . assetCard } >
You can’t perform that action at this time.
0 commit comments