mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
3dbf5dbf65
A lint error was accidentally introduced recently when two PRs changed the same area of code (#9793 and #9795). They didn't conflict, and the lint passed for both, but when combined they left an unused variable.
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
import { connect } from 'react-redux'
|
|
import FirstTimeFlowSwitch from './first-time-flow-switch.component'
|
|
|
|
const mapStateToProps = ({ metamask }) => {
|
|
const { completedOnboarding, isInitialized } = metamask
|
|
|
|
return {
|
|
completedOnboarding,
|
|
isInitialized,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(FirstTimeFlowSwitch)
|