Skip to content

Commit

Permalink
Fix confirm action bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Nov 15, 2022
1 parent c2fb0e2 commit 7f731df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/TradeBox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,7 @@ class TradeBox extends Component {

handleClickConfirmButton = () => {
apiClient
.post(this.props.baseUrl, this.props.baseUrl, '/api/order/?order_id=' + this.props.data.id, {
.post(this.props.baseUrl, '/api/order/?order_id=' + this.props.data.id, {
action: 'confirm',
})
.then((data) => {
Expand Down

0 comments on commit 7f731df

Please sign in to comment.