Skip to content

Commit 492ff4a

Browse files
committed
fix: excluded zero donation backers
1 parent ade6109 commit 492ff4a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/components/Support/Support.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ SUPPORTERS.sort((a, b) => b.totalDonations - a.totalDonations);
3232
// Define ranks
3333
const totalRanks = {
3434
backer: {
35+
minimum: 1,
3536
maximum: 200,
3637
random: 100,
3738
},
@@ -57,6 +58,7 @@ const totalRanks = {
5758
};
5859
const monthlyRanks = {
5960
backer: {
61+
minimum: 1,
6062
maximum: 10,
6163
random: 100,
6264
},

0 commit comments

Comments
 (0)