Fix linting errors in address component

This commit is contained in:
Anna Melzer 2018-10-28 16:58:47 +01:00
parent d1b4daebd2
commit c7f66ab8e3

View file

@ -2,6 +2,9 @@ import { connect } from 'react-redux';
import { doNotify } from 'lbry-redux';
import Address from './view';
export default connect(null, {
doNotify,
})(Address);
export default connect(
null,
{
doNotify,
}
)(Address);