From 9fc30fe92fce579663ed7a9f2c08f9ecfdf24bdb Mon Sep 17 00:00:00 2001 From: Matthias Luger Date: Sat, 17 Feb 2024 08:20:27 +0100 Subject: [PATCH] increase prices --- components/CoflCoins/CoflCoinsPurchase.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/CoflCoins/CoflCoinsPurchase.tsx b/components/CoflCoins/CoflCoinsPurchase.tsx index 35230ce2..977761a9 100644 --- a/components/CoflCoins/CoflCoinsPurchase.tsx +++ b/components/CoflCoins/CoflCoinsPurchase.tsx @@ -108,9 +108,9 @@ function Payment(props: Props) { coflCoinsToBuy={1800} loadingProductId={loadingId} redirectLink={currentRedirectLink} - paypalPrice={6.99} - stripePrice={6.69} - lemonsqueezyPrice={6.99} + paypalPrice={8.69} + stripePrice={8.42} + lemonsqueezyPrice={8.69} disabledTooltip={disabledTooltip} isDisabled={isDisabled} onPayPalPay={onPayPaypal} @@ -189,9 +189,9 @@ function Payment(props: Props) { coflCoinsToBuy={1800 + (1800 - (coflCoins % 1800))} loadingProductId={loadingId} redirectLink={currentRedirectLink} - paypalPrice={(6.99 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} - stripePrice={(6.69 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} - lemonsqueezyPrice={(6.99 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} + paypalPrice={(8.69 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} + stripePrice={(8.42 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} + lemonsqueezyPrice={(8.69 / 1800) * (1800 + (1800 - (coflCoins % 1800)))} disabledTooltip={disabledTooltip} isDisabled={isDisabled} onPayPalPay={onPayPaypal}