diff --git a/src/components/PaymentPage/methods/CheckoutForm/index.tsx b/src/components/PaymentPage/methods/CheckoutForm/index.tsx index 308cf27..fa0242a 100644 --- a/src/components/PaymentPage/methods/CheckoutForm/index.tsx +++ b/src/components/PaymentPage/methods/CheckoutForm/index.tsx @@ -17,6 +17,7 @@ interface ICheckoutFormProps { subscriptionReceiptId?: string; returnUrl?: string; confirmType?: "payment" | "setup"; + isHide?: boolean; } export default function CheckoutForm({ @@ -24,6 +25,7 @@ export default function CheckoutForm({ subscriptionReceiptId, returnUrl, confirmType = "payment", + isHide = false, }: ICheckoutFormProps) { const stripe = useStripe(); const elements = useElements(); @@ -70,13 +72,19 @@ export default function CheckoutForm({ return (