Skip to content

Commit

Permalink
Fix/billing plans value (#102)
Browse files Browse the repository at this point in the history
* change the yearly value from 96€ per month to 8€ per month

* changed plan's price to 99.99/month and 999.90/year
  • Loading branch information
Rodriguespn authored Apr 11, 2024
1 parent 10b0bdb commit efc67f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/premium/SubscriptionPeriodToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ export const SubscriptionPeriodModes: SubscriptionPeriodMode[] = [
{
name: SubscriptionPeriodNames.MONTHLY,
priceId: import.meta.env.VITE_PRO_PRICE_ID as string,
priceValueMonth: 10.00,
priceValueMonth: 99.99,
priceCurrency: "€",
},
{
name: SubscriptionPeriodNames.YEARLY,
priceId: import.meta.env.VITE_PRO_PRICE_YEARLY_ID as string,
priceValueMonth: 8.00,
priceValueMonth: 83.33,
priceCurrency: "€",
},
];
Expand Down

0 comments on commit efc67f3

Please sign in to comment.