Skip to content

Commit

Permalink
fix: Resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiewang committed Jun 21, 2023
1 parent 173f6ae commit 945beba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/payment_request/payment_request.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum PaymentRequestInitiator {

enum PaymentRequestCaptureMethod {
Automatic = 'AUTOMATIC',
Manual = 'Manual',
Manual = 'MANUAL',
}

enum PaymentRequestRedeemPoints {
Expand Down
2 changes: 1 addition & 1 deletion src/payment_request/payment_request.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ PaymentRequest.prototype.createPaymentRequest = function(data) {
payment_method_id: data.payment_method_id,
capture_method: data.capture_method,
shipping_information: data.shipping_information,
initiator: data.initiator
initiator: data.initiator,
}),
})
.then(resolve)
Expand Down

0 comments on commit 945beba

Please sign in to comment.