Minor Changes
-
[Billing Beta]
checkout.confirm()now infers the resource id resulting in less repetition and improved DX. (#6642) by @panteliselefAfter
const checkout = Clerk.billing.startCheckout({ orgId }); checkout.confirm(); // orgId is always implied
Before
const checkout = clerk.billing.startCheckout({ orgId }); checkout.confirm({ orgId });