From 13d7dc43170b3463d1a58b26d8eb0c0c0b7e131b Mon Sep 17 00:00:00 2001 From: Malte Date: Mon, 18 Dec 2023 23:16:57 +0100 Subject: [PATCH] Disable mollie until we fix the backend. ref. #1120 --- src/Components/DonationWidget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/DonationWidget.tsx b/src/Components/DonationWidget.tsx index d043bf3e5..2927ec46a 100644 --- a/src/Components/DonationWidget.tsx +++ b/src/Components/DonationWidget.tsx @@ -12,7 +12,7 @@ import { Radio } from './Radio'; const DONATIONS_API = 'https://backend.datenanfragen.de/donation'; const SUGGESTED_AMOUNTS = [5, 10, 15, 25, 50, 75, 100, 150, 200, 250]; -const PAYMENT_METHODS = ['bank-transfer', /*'creditcard',*/ 'cryptocurrency', 'paypal', 'mollie']; +const PAYMENT_METHODS = ['bank-transfer', /*'creditcard',*/ 'cryptocurrency', 'paypal'/*, 'mollie'*/]; const amount_after_linear_fee = (fee_percent: number, fee_fixed: number, x: number) => x - fee_fixed - x * fee_percent;