chore: lint

This commit is contained in:
Bereket Engida
2025-03-22 20:41:59 +03:00
parent 889b51df5e
commit 197ed97f80
+1 -2
View File
@@ -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,
),
);
}