diff --git a/src/Donations/PaymentMethods/PaymentMethodTabs.tsx b/src/Donations/PaymentMethods/PaymentMethodTabs.tsx index 49de44cf..9e735a13 100644 --- a/src/Donations/PaymentMethods/PaymentMethodTabs.tsx +++ b/src/Donations/PaymentMethods/PaymentMethodTabs.tsx @@ -218,8 +218,6 @@ export default function PaymentMethodTabs({ {/*9 May 2023 - Apple Pay / Google Pay is disabled currently as it is not working correctly*/} {showNativePay && ( { +}: PaymentButtonProps): ReactElement | null => { const { t, ready } = useTranslation(["common"]); const { paymentRequest, setPaymentRequest } = useContext(QueryParamContext); @@ -216,8 +212,6 @@ PaymentButtonProps): ReactElement | null => { /* 9 May 2023 - Apple Pay / Google Pay is disabled currently as it is not working correctly*/ interface NativePayProps { - // isApplePayEnabled: boolean; - // isGooglePayEnabled: boolean; country: string; currency: string; amount: number; @@ -232,8 +226,6 @@ interface NativePayProps { frequency: string | null; } export const NativePay = ({ - // isApplePayEnabled = true, - // isGooglePayEnabled = true, country, currency, amount, @@ -280,8 +272,6 @@ export const NativePay = ({ paymentLabel={paymentLabel} frequency={frequency} paymentSetup={paymentSetup} - // isApplePayEnabled={true} - // isGooglePayEnabled={true} /> );