revert(payment): remove unsupported Stripe and EzPay upgrade

This commit is contained in:
Codex
2026-07-29 17:23:01 +08:00
parent ee6ab77f4d
commit 3547f49bd9
54 changed files with 327 additions and 1747 deletions
@@ -24,8 +24,6 @@ type PaymentLaunchDialogFlow = Pick<
| "shouldShowQrisDialog"
| "shouldShowStripeDialog"
| "stripeClientSecret"
| "stripeCustomerSessionClientSecret"
| "savedPaymentMethodsEnabled"
>;
export interface PaymentLaunchDialogsProps {
@@ -66,10 +64,6 @@ export function PaymentLaunchDialogs({
{launch.shouldShowStripeDialog && launch.stripeClientSecret ? (
<LazyStripePaymentDialog
clientSecret={launch.stripeClientSecret}
customerSessionClientSecret={
launch.stripeCustomerSessionClientSecret
}
savedPaymentMethodsEnabled={launch.savedPaymentMethodsEnabled}
returnPath={stripeReturnPath}
onClose={launch.handleStripeClose}
onConfirmed={launch.handleStripeConfirmed}