A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/pages/send/send-content/send-row-wrapper/send-row-error-message/send-row-error-message.cont...

13 lines
363 B

import { connect } from 'react-redux';
import { getSendErrors } from '../../../../../ducks/send';
import SendRowErrorMessage from './send-row-error-message.component';
7 years ago
export default connect(mapStateToProps)(SendRowErrorMessage);
7 years ago
function mapStateToProps(state, ownProps) {
7 years ago
return {
errors: getSendErrors(state),
errorType: ownProps.errorType,
};
}