#hollystyles-klarna-billinginfo
1 messages · Page 1 of 1 (latest)
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.
- hollystyles, 6 days ago, 30 messages
Hello! Can you show me a screenshot of what you're seeing on the Klarna part?
Can you share the stripe.confirmPayment code that leads to this?
`//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
}
}
}
}
});`
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.
Excellent thanks.