#now_iwant
1 messages ยท Page 1 of 1 (latest)
Trying to achieve from left to right ๐
The layout property is an option for PaymentElement, not elements
you should pass the options when you create the PaymentElement
omg that worked like a charm, thank you so so much!!
was reading all documentations for hours for this one liner fix ๐ฅ
The clientSecret and appearance are options for elements, you might want to take them out from your options object.
ahh got it! Thank you
For Elements, I put options={{
clientSecret,
appearance,
}};
For PaymentElement, I put options={{
layout: {
type: "accordion",
defaultCollapsed: false,
radios: false,
spacedAccordionItems: true,
},
}}