Skip to content

Commit 7d17d29

Browse files
authored
fix: excluded zero donation backers (#7585)
1 parent 0a0be5a commit 7d17d29

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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)