From ef98e876a72c10f2a5f6078703aba62eaa390104 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 20 Feb 2020 11:52:10 -0400 Subject: [PATCH] Remove unused container prop (#8076) The `activeTab` prop being passed in from the container was never used. --- ui/app/pages/home/home.container.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/app/pages/home/home.container.js b/ui/app/pages/home/home.container.js index 9230cce69..6389ed2fe 100644 --- a/ui/app/pages/home/home.container.js +++ b/ui/app/pages/home/home.container.js @@ -15,7 +15,7 @@ import { getEnvironmentType } from '../../../../app/scripts/lib/util' import { ENVIRONMENT_TYPE_POPUP } from '../../../../app/scripts/lib/enums' const mapStateToProps = (state) => { - const { activeTab, metamask, appState } = state + const { metamask, appState } = state const { suggestedTokens, seedPhraseBackedUp, @@ -37,7 +37,6 @@ const mapStateToProps = (state) => { forgottenPassword, suggestedTokens, unconfirmedTransactionsCount: unconfirmedTransactionsCountSelector(state), - activeTab, shouldShowSeedPhraseReminder: !seedPhraseBackedUp && (parseInt(accountBalance, 16) > 0 || tokens.length > 0), isPopup, threeBoxSynced,