1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/components/app/modals/confirm-delete-network/confirm-delete-network.container.js
David Walsh fee1606fad
Fix #20305 - Show the network name in Delete Network modal (#20309)
* Fix #20305 - Show the network name in Delete Network modal

* Update app/_locales/en/messages.json

Co-authored-by: George Marshall <george.marshall@consensys.net>

* Add unit test

---------

Co-authored-by: George Marshall <george.marshall@consensys.net>
2023-08-04 09:48:12 -05:00

26 lines
869 B
JavaScript

import { connect } from 'react-redux';
import { compose } from 'redux';
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
import { removeNetworkConfiguration } from '../../../../store/actions';
import { getNetworkConfigurations } from '../../../../selectors';
import ConfirmDeleteNetwork from './confirm-delete-network.component';
const mapStateToProps = (state, ownProps) => {
const networkConfigurations = getNetworkConfigurations(state);
const networkNickname = networkConfigurations[ownProps.target].nickname;
return { networkNickname };
};
const mapDispatchToProps = (dispatch) => {
return {
removeNetworkConfiguration: (target) =>
dispatch(removeNetworkConfiguration(target)),
};
};
export default compose(
withModalProps,
connect(mapStateToProps, mapDispatchToProps),
)(ConfirmDeleteNetwork);