mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
466ece4588
This reverts commit1110287fe1
, reversing changes made to72eb233ee9
.
26 lines
633 B
JavaScript
26 lines
633 B
JavaScript
import { connect } from 'react-redux'
|
|
import EndOfFlow from './end-of-flow.component'
|
|
import { setCompletedOnboarding } from '../../../store/actions'
|
|
|
|
const firstTimeFlowTypeNameMap = {
|
|
create: 'New Wallet Created',
|
|
'import': 'New Wallet Imported',
|
|
}
|
|
|
|
const mapStateToProps = ({ metamask }) => {
|
|
const { firstTimeFlowType } = metamask
|
|
|
|
return {
|
|
completionMetaMetricsName: firstTimeFlowTypeNameMap[firstTimeFlowType],
|
|
}
|
|
}
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
completeOnboarding: () => dispatch(setCompletedOnboarding()),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(EndOfFlow)
|