diff --git a/apps/frontend/src/components/billing/embedded.billing.tsx b/apps/frontend/src/components/billing/embedded.billing.tsx index c556b890..0dc5cb8d 100644 --- a/apps/frontend/src/components/billing/embedded.billing.tsx +++ b/apps/frontend/src/components/billing/embedded.billing.tsx @@ -120,16 +120,20 @@ const FormWrapper: FC<{ showCoupon?: boolean; autoApplyCoupon?: string }> = ({ return (
); }; -const StripeInputs: FC<{ showCoupon: boolean; autoApplyCoupon?: string }> = ({ - showCoupon, - autoApplyCoupon, -}) => { +const StripeInputs: FC<{ + showCoupon: boolean; + autoApplyCoupon?: string; + loading: boolean; +}> = ({ showCoupon, autoApplyCoupon, loading }) => { const checkout = useCheckout(); const t = useT(); const [ready, setReady] = useState(false); @@ -147,8 +151,16 @@ const StripeInputs: FC<{ showCoupon: boolean; autoApplyCoupon?: string }> = ({