Merge pull request #26641 from overleaf/kh-use-stripe-us-client

[web] use Stripe US client

GitOrigin-RevId: 9b99ba8c7ac900c528526cf7e18fec48761e0091
This commit is contained in:
Kristina
2025-06-30 09:59:00 +02:00
committed by Copybot
parent 41bee0be39
commit 69aa973b92

View File

@@ -108,6 +108,10 @@ export type MemberGroupSubscription = Omit<GroupSubscription, 'admin_id'> & {
}
type PaymentProviderService = 'stripe-us' | 'stripe-uk' | 'recurly'
export type StripePaymentProviderService = Exclude<
PaymentProviderService,
'recurly'
>
export type PaymentProvider = {
service: PaymentProviderService