Fix colaboative cancel broken

This commit is contained in:
Reckless_Satoshi 2022-05-03 15:51:52 -07:00
parent a4afb81ccc
commit b3fcfc0570
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -379,7 +379,7 @@ class OrderPage extends Component {
'action':'cancel',
}),
};
fetch('/api/order/' + '?order_id=' + this.state.state.orderId, requestOptions)
fetch('/api/order/' + '?order_id=' + this.state.orderId, requestOptions)
.then((response) => response.json())
.then(() => (this.getOrderDetails(this.state.orderId) & this.setState({status:4})));
this.handleClickCloseCollaborativeCancelDialog();