feat: fix some comma dangle

This commit is contained in:
qianxi0410
2022-08-07 00:17:27 +08:00
parent 9bca6bb72e
commit c428de6e42
23 changed files with 81 additions and 75 deletions

View File

@ -52,7 +52,7 @@ class PaymentListPage extends BaseListPage {
PaymentBackend.addPayment(newPayment)
.then((res) => {
this.props.history.push({pathname: `/payments/${newPayment.name}`, mode: "add"});
},
}
)
.catch(error => {
Setting.showMessage("error", `Payment failed to add: ${error}`);
@ -67,7 +67,7 @@ class PaymentListPage extends BaseListPage {
data: Setting.deleteRow(this.state.data, i),
pagination: {total: this.state.pagination.total - 1},
});
},
}
)
.catch(error => {
Setting.showMessage("error", `Payment failed to delete: ${error}`);