Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
LL-8518 - Fix nfts being visible even when empty in Account (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Lambert authored Dec 30, 2021
1 parent 04f3ce2 commit a02631e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Account/ListHeaderComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export function getListHeaderComponents({
/>,
]
: []),
...(!empty && account.type === "Account" && account.nfts
...(!empty && account.type === "Account" && account.nfts?.length
? [<NftCollectionsList account={account} />]
: []),
...(compoundSummary &&
Expand Down

0 comments on commit a02631e

Please sign in to comment.