From 492ff4a5d2aaf6421ba6cc972a8abfa8ed09b80e Mon Sep 17 00:00:00 2001 From: SwetaTanwar Date: Sat, 15 Mar 2025 17:17:28 +0530 Subject: [PATCH] fix: excluded zero donation backers --- src/components/Support/Support.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Support/Support.jsx b/src/components/Support/Support.jsx index ac50bbd5e47c..aa546bd0522e 100644 --- a/src/components/Support/Support.jsx +++ b/src/components/Support/Support.jsx @@ -32,6 +32,7 @@ SUPPORTERS.sort((a, b) => b.totalDonations - a.totalDonations); // Define ranks const totalRanks = { backer: { + minimum: 1, maximum: 200, random: 100, }, @@ -57,6 +58,7 @@ const totalRanks = { }; const monthlyRanks = { backer: { + minimum: 1, maximum: 10, random: 100, },