We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b1745 commit 44d4494Copy full SHA for 44d4494
src/app/pages/Patron/PricingModal/index.js
@@ -70,9 +70,9 @@ class PricingModal extends React.PureComponent {
70
getPatronTier = () => {
71
const { price } = this.state;
72
73
- if (price >= 35) return 4;
74
- if (price >= 25) return 3;
75
- if (price >= 15) return 2;
+ if (price >= 20) return 4;
+ if (price >= 15) return 3;
+ if (price >= 10) return 2;
76
return 1;
77
};
78
0 commit comments