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

Commit

Permalink
Remove useless comparison
Browse files Browse the repository at this point in the history
Co-authored-by: Juan Cortés Ross <juan@bohem.io>
  • Loading branch information
lambertkevin and juan-cortes authored May 4, 2022
1 parent d0470ff commit 99aedc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Settings/Accounts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function AccountsSettings({ navigation }: { navigation: any }) {
onPress={() => navigation.navigate(ScreenName.CryptoAssetsSettings)}
/>
)}
{hiddenNftCollections.length > 0 && (
{hiddenNftCollections.length && (
<SettingsRow
event="HiddenNftCollectionsSettings"
title={t("settings.accounts.hiddenNFTCollections")}
Expand Down

0 comments on commit 99aedc7

Please sign in to comment.