Skip to content

Commit

Permalink
build: add professional 500 plan
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed May 11, 2020
1 parent e47a850 commit ea8a239
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/elements/PricePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const calculateMonthlyPrice = reqsPerDay =>
(reqsPerDay / 1000) * BASE_PLAN_PRICE

export const PLANS = [
{ planId: 'pro-1k-v3', ...createReqsLabels(1000), width: '4.5rem' },
{ planId: 'pro-1k-v3', ...createReqsLabels(500), width: '4.5rem' },
{ planId: 'pro-500-v3', ...createReqsLabels(1000), width: '4.5rem' },
{ planId: 'pro-3k-v3', ...createReqsLabels(3000), width: '4.5rem' },
{ planId: 'pro-5k-v3', ...createReqsLabels(5000), width: '5rem' },
{ planId: 'pro-10k-v3', ...createReqsLabels(10000), width: '5rem' },
Expand All @@ -24,7 +25,7 @@ export const PLANS = [
{ planId: 'pro-50k-v3', ...createReqsLabels(50000), width: '5.7rem' }
]

export const DEFAULT_PLAN = PLANS[0]
export const DEFAULT_PLAN = PLANS[1]

export default props => {
const [currentPlan, setCurrentPlan] = useState(DEFAULT_PLAN)
Expand Down

0 comments on commit ea8a239

Please sign in to comment.