Skip to content

Commit 44d4494

Browse files
author
Ives van Hoorne
committed
Update Patron badge thresholds
1 parent f9b1745 commit 44d4494

File tree

1 file changed

+3
-3
lines changed
  • src/app/pages/Patron/PricingModal

1 file changed

+3
-3
lines changed

src/app/pages/Patron/PricingModal/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ class PricingModal extends React.PureComponent {
7070
getPatronTier = () => {
7171
const { price } = this.state;
7272

73-
if (price >= 35) return 4;
74-
if (price >= 25) return 3;
75-
if (price >= 15) return 2;
73+
if (price >= 20) return 4;
74+
if (price >= 15) return 3;
75+
if (price >= 10) return 2;
7676
return 1;
7777
};
7878

0 commit comments

Comments
 (0)