Skip to content

Commit

Permalink
fix: removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
amihajlovski committed Oct 30, 2023
1 parent 26be5cc commit ad94b16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions adyen/components/AdyenRedirect.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ const AdyenRedirect = () => {
async onAdditionalDetails(state, component) {
const adyenPaymentsDetailsService = new AdyenPaymentsDetailsService(token)
const paymentsDetailsResponse =
await adyenPaymentsDetailsService.submitPaymentsDetails(
state,
customerId
)
await adyenPaymentsDetailsService.submitPaymentsDetails(state, customerId)
if (paymentsDetailsResponse?.isSuccessful) {
navigate(
`/checkout/confirmation/${paymentsDetailsResponse.merchantReference}`
Expand Down
1 change: 0 additions & 1 deletion adyen/services/payments-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export class AdyenPaymentsDetailsService {
}

async submitPaymentsDetails(data, customerId) {
console.log('submitPaymentsDetails', data)
const res = await this.apiClient.post({
body: JSON.stringify({
data
Expand Down

0 comments on commit ad94b16

Please sign in to comment.