Compare commits

...

3 Commits

Author SHA1 Message Date
Dhruwang
4ce0c3f98f fix: enhance reconciliation process for subscriptions with idempotency support 2026-03-23 15:48:20 +05:30
Dhruwang
f822d70e27 fix: update subscription status filter to "active" in organization billing 2026-03-23 15:41:57 +05:30
Dhruwang
7e43fe7957 fix: duplicate hobby sub 2026-03-23 14:10:12 +05:30

View File

@@ -1328,7 +1328,7 @@ export const reconcileCloudStripeSubscriptionsForOrganization = async (
const freshSubscriptions = await client.subscriptions.list({
customer: customerId,
status: "active",
limit: 1,
limit: 5,
});
if (freshSubscriptions.data.length === 0) {