diff --git a/src/components/bitcoinConnect/SubscriptionPaymentButton.js b/src/components/bitcoinConnect/SubscriptionPaymentButton.js index 07ce879..505004c 100644 --- a/src/components/bitcoinConnect/SubscriptionPaymentButton.js +++ b/src/components/bitcoinConnect/SubscriptionPaymentButton.js @@ -38,7 +38,7 @@ const SubscriptionPaymentButtons = ({ // Calculate the amount based on the subscription type const getAmount = () => { - return subscriptionType === 'yearly' ? 500 : 50; + return subscriptionType === 'yearly' ? 500000 : 50000; }; const amount = getAmount(); diff --git a/src/components/profile/subscription/UserSubscription.js b/src/components/profile/subscription/UserSubscription.js index b0d734e..a49975f 100644 --- a/src/components/profile/subscription/UserSubscription.js +++ b/src/components/profile/subscription/UserSubscription.js @@ -117,11 +117,6 @@ const UserSubscription = () => { } }; - // Calculate the subscription amount based on type - const getAmount = () => { - return subscriptionType === 'yearly' ? 500 : 50; - }; - return (