diff --git a/src/app/club/payment.tsx b/src/app/club/payment.tsx index 9555a26..db2805b 100644 --- a/src/app/club/payment.tsx +++ b/src/app/club/payment.tsx @@ -59,7 +59,6 @@ function CheckoutForm({ const [selectedAdditionalDonation, setSelectedAdditionalDonation] = useState(null); const [customAmount, setCustomAmount] = useState(''); const [email, setEmail] = useState(''); - const [offsetFees, setOffsetFees] = useState(true); const [totalAmount, setTotalAmount] = useState(300); const [message, setMessage] = useState(''); const [isLoading, setIsLoading] = useState(false); @@ -111,9 +110,7 @@ function CheckoutForm({ } } - if (offsetFees) { - subtotal = Math.ceil(subtotal * 1.03) - } + subtotal = Math.ceil(subtotal * 1.03) setTotalAmount(subtotal); @@ -128,7 +125,7 @@ function CheckoutForm({ }, }), }); - }, [paymentIntentID, selectedMembershipLevel, selectedAdditionalDonation, customAmount, offsetFees, email]) + }, [paymentIntentID, selectedMembershipLevel, selectedAdditionalDonation, customAmount, email]) const handleSubmit = async (e: FormEvent) => { e.preventDefault(); @@ -303,33 +300,16 @@ function CheckoutForm({ Payment
- If you would like to pay by cash or check, please instead - fill out a paper form - and mail to the address on the form. + Credit card fees included. If you would like to avoid these fees or + to pay by cash or check, please instead fill out a paper form and + mail to the address on the form.
{/* TODO: Automatically renew toggle? */} -
-
- setOffsetFees(e.target.checked)} - className="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-600" - /> -
-
- -
-
-