remove check for balance during publish

This is being correctly done on the daemon now and the app shows appropriate error
This commit is contained in:
Thomas Zarebczan 2018-03-15 02:46:50 -04:00 committed by GitHub
parent 9bcb75e234
commit 34e971cd7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,15 +61,6 @@ class PublishForm extends React.PureComponent {
}
handleSubmit() {
const { balance } = this.props;
const { bid } = this.state;
if (bid > balance) {
this.handlePublishError({ message: 'insufficient funds' });
return;
}
this.setState({
submitting: true,
});