aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/home/home.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/pages/home/home.container.js')
-rw-r--r--ui/app/pages/home/home.container.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/pages/home/home.container.js b/ui/app/pages/home/home.container.js
index 4195fbe79..2ef05679d 100644
--- a/ui/app/pages/home/home.container.js
+++ b/ui/app/pages/home/home.container.js
@@ -23,6 +23,7 @@ const mapStateToProps = state => {
privacyMode,
} = {},
seedPhraseBackedUp,
+ tokens,
} = metamask
const accountBalance = getCurrentEthBalance(state)
const { forgottenPassword } = appState
@@ -39,7 +40,7 @@ const mapStateToProps = state => {
showPrivacyModeNotification: migratedPrivacyMode,
activeTab,
viewingUnconnectedDapp: isUnconnected && isPopup,
- shouldShowSeedPhraseReminder: parseInt(accountBalance, 16) > 0 && !seedPhraseBackedUp,
+ shouldShowSeedPhraseReminder: !seedPhraseBackedUp && (parseInt(accountBalance, 16) > 0 || tokens.length > 0),
}
}