Skip to content

Commit

Permalink
Smol fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmin-Parvulescu committed Sep 27, 2023
1 parent 6872410 commit 44b1427
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export default () => {
quantity: quantity,
customerID: paymentData?.customerID,
txType: 'remove',
txProduct: TxProduct.GroupSeats,
txProduct: TxProduct.Seats,
}),
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/console/app/services/billing/stripe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const reconcileAppSubscriptions = async (
priceID: si.price.id,
quantity: si.quantity,
}))
.filter((pq) => Boolean(pq.quantity))
.filter((pq) => pq.quantity != null)

const priceIdToPlanTypeDict = {
[env.SECRET_STRIPE_PRO_PLAN_ID]: ServicePlanType.PRO,
Expand Down

0 comments on commit 44b1427

Please sign in to comment.