From 2c81e94f7483cf2363d234bd5d8f7e2f64f97dd9 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Wed, 23 Mar 2022 13:36:40 +0100 Subject: [PATCH] Fixed discount bug - fixes bug so that negative discount values won't be showen on tier cards. --- ghost/portal/src/utils/discount.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/portal/src/utils/discount.js b/ghost/portal/src/utils/discount.js index 8c3a236e48..1417b08cb0 100644 --- a/ghost/portal/src/utils/discount.js +++ b/ghost/portal/src/utils/discount.js @@ -3,7 +3,8 @@ function calculateDiscount(monthly, yearly) { return 0; } - return monthly ? 100 - Math.floor((yearly / 12 * 100) / monthly) : 0; + const discount = monthly ? 100 - Math.floor((yearly / 12 * 100) / monthly) : 0; + return (discount >= 1 && discount < 100) ? discount : 0; } module.exports = calculateDiscount; \ No newline at end of file