#hollystyles-klarna-billinginfo

1 messages · Page 1 of 1 (latest)

wintry ledgeBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

crude hedge
#

Hello! Can you show me a screenshot of what you're seeing on the Klarna part?

plain pumice
crude hedge
#

Can you share the stripe.confirmPayment code that leads to this?

plain pumice
#

`//Attempt payment with the provider
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
// Make sure to change this to your payment completion page
return_url: config.redirectUri,
payment_method_data: {
billing_details: {

        name: detailsRequest.firstName + " " + detailsRequest.lastName,
        email: detailsRequest.email,
        phone: detailsRequest.phoneNumber,
        address: {
          line1: detailsRequest.addressLine1,
          line2: detailsRequest.addressLine2,
          city: detailsRequest.townCity,
          state: "",
          postal_code: detailsRequest.postalCode,
          country: detailsRequest.country
        }
      }
    }
}

});`

wintry ledgeBOT
crude hedge
#

Ah, looks like this is a known issue. I'll bump it internally. There doesn't seem to be a workaround at the moment, unfortunately.

plain pumice
#

Excellent thanks.