btc: remove console.logs to prompt rebuild

This commit is contained in:
Matilde Park 2021-06-01 18:18:43 -04:00
parent d54f9cf129
commit 463059ba20
3 changed files with 0 additions and 4 deletions

View File

@ -90,8 +90,6 @@ export default class BridgeInvoice extends Component {
inputBorder = 'red';
}
console.log('bridge invoice', error);
return (
<>
{ this.props.state.broadcastSuccess ?

View File

@ -30,7 +30,6 @@ export class Root extends Component {
this.ship = window.ship;
this.state = store.state;
store.setStateHandler(this.setState.bind(this));
console.log('state', this.state);
}
componentDidMount(){

View File

@ -6,7 +6,6 @@ export class UpdateReducer {
if (!json) {
return;
}
console.log('reduce', json);
if (json.providerStatus) {
this.reduceProviderStatus(json.providerStatus, state);
}