From 7602f119bdb437159051344d308f921ff0aa9ba4 Mon Sep 17 00:00:00 2001 From: Dylan Staley <88163+dstaley@users.noreply.github.com> Date: Fri, 5 Jun 2026 09:41:13 -0500 Subject: [PATCH 1/2] fix(ui): remove subtotal lines --- .../src/components/Checkout/CheckoutForm.tsx | 21 ++++--------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/packages/ui/src/components/Checkout/CheckoutForm.tsx b/packages/ui/src/components/Checkout/CheckoutForm.tsx index b0c75cae562..862ab183125 100644 --- a/packages/ui/src/components/Checkout/CheckoutForm.tsx +++ b/packages/ui/src/components/Checkout/CheckoutForm.tsx @@ -120,13 +120,6 @@ export const CheckoutForm = withCardStateProvider(() => { /> )} - - - - {showProratedDiscount && ( @@ -178,7 +171,10 @@ export const CheckoutForm = withCardStateProvider(() => { /> ) : showRenewalTotals ? null : ( - + { {showRenewalTotals && ( <> - - - - Date: Mon, 8 Jun 2026 11:01:23 -0500 Subject: [PATCH 2/2] fix(clerk-js): restore import --- packages/clerk-js/src/core/resources/BillingSubscription.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/clerk-js/src/core/resources/BillingSubscription.ts b/packages/clerk-js/src/core/resources/BillingSubscription.ts index 73e67e58863..27254116778 100644 --- a/packages/clerk-js/src/core/resources/BillingSubscription.ts +++ b/packages/clerk-js/src/core/resources/BillingSubscription.ts @@ -19,6 +19,7 @@ import { unixEpochToDate } from '@/utils/date'; import { billingCreditsFromJSON, billingMoneyAmountFromJSON, + billingPerUnitTotalTierFromJSON, billingSubscriptionItemNextPaymentFromJSON, billingSubscriptionNextPaymentFromJSON, } from '../../utils';