Skip to content

Commit

Permalink
Disable mollie until we fix the backend. ref. #1120
Browse files Browse the repository at this point in the history
  • Loading branch information
mal-tee committed Jan 5, 2024
1 parent e4cc8d6 commit 13d7dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/DonationWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 13d7dc4

Please sign in to comment.