aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js')
-rw-r--r--ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js b/ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js
deleted file mode 100644
index d68f7a153..000000000
--- a/ui/app/components/pages/first-time-flow/first-time-flow-switch/first-time-flow-switch.container.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import { connect } from 'react-redux'
-import FirstTimeFlowSwitch from './first-time-flow-switch.component'
-
-const mapStateToProps = ({ metamask }) => {
- const {
- completedOnboarding,
- isInitialized,
- isUnlocked,
- participateInMetaMetrics: optInMetaMetrics,
- } = metamask
-
- return {
- completedOnboarding,
- isInitialized,
- isUnlocked,
- optInMetaMetrics,
- }
-}
-
-export default connect(mapStateToProps)(FirstTimeFlowSwitch)