removed message param from selector

This commit is contained in:
bill bittner 2018-03-12 13:57:55 -07:00
parent ef8e87c48c
commit 6bb1ca606b

View file

@ -3,10 +3,9 @@ import View from './view';
const mapStateToProps = ({ publish }) => { const mapStateToProps = ({ publish }) => {
return { return {
disabled : publish.disabled, disabled: publish.disabled,
disabledMessage: publish.disabledMessage, file : publish.file,
file : publish.file, status : publish.status.status,
status : publish.status.status,
}; };
}; };