allow only card type in stripe PaymentElement (#299)

This commit is contained in:
Hoan Luu Huu
2023-08-04 17:57:10 +07:00
committed by GitHub
parent 393dd7374f
commit bb18556a6c
2 changed files with 10 additions and 2 deletions
@@ -148,7 +148,11 @@ export const ManagePaymentForm = () => {
<div className="grid__row">
<div></div>
<div>
<PaymentElement />
<PaymentElement
options={{
paymentMethodOrder: ["card"],
}}
/>
</div>
</div>
</div>
@@ -577,7 +577,11 @@ const SubscriptionForm = () => {
<div className="grid__row">
<div></div>
<div>
<PaymentElement />
<PaymentElement
options={{
paymentMethodOrder: ["card"],
}}
/>
</div>
</div>
</fieldset>