From efc67f3ee3ae229f77d0e17b243e41ae9adb8301 Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues <44656907+Rodriguespn@users.noreply.github.com> Date: Thu, 11 Apr 2024 11:36:48 +0100 Subject: [PATCH] Fix/billing plans value (#102) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * change the yearly value from 96€ per month to 8€ per month * changed plan's price to 99.99/month and 999.90/year --- src/components/premium/SubscriptionPeriodToggle.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/premium/SubscriptionPeriodToggle.tsx b/src/components/premium/SubscriptionPeriodToggle.tsx index 72d7f72..3cd83d1 100644 --- a/src/components/premium/SubscriptionPeriodToggle.tsx +++ b/src/components/premium/SubscriptionPeriodToggle.tsx @@ -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: "€", }, ];