mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
19 lines
590 B
JavaScript
19 lines
590 B
JavaScript
import { connect } from 'react-redux'
|
|
import { compose } from 'redux'
|
|
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props'
|
|
import EditApprovalPermission from './edit-approval-permission.component'
|
|
import { getSelectedIdentity } from '../../../../selectors'
|
|
|
|
const mapStateToProps = (state) => {
|
|
const modalStateProps = state.appState.modal.modalState.props || {}
|
|
return {
|
|
selectedIdentity: getSelectedIdentity(state),
|
|
...modalStateProps,
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps),
|
|
)(EditApprovalPermission)
|