From 197ed97f80d6e9fd9d84755caf41529afd44d4c1 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Sat, 22 Mar 2025 20:41:59 +0300 Subject: [PATCH] chore: lint --- packages/stripe/src/utils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/stripe/src/utils.ts b/packages/stripe/src/utils.ts index 2002304bd7..747f94f0fd 100644 --- a/packages/stripe/src/utils.ts +++ b/packages/stripe/src/utils.ts @@ -13,8 +13,7 @@ export async function getPlanByPriceId( return await getPlans(options).then((res) => res?.find( (plan) => - plan.priceId === priceId || - plan.annualDiscountPriceId === priceId, + plan.priceId === priceId || plan.annualDiscountPriceId === priceId, ), ); }