Skip to content

Commit

Permalink
enable ApplePay by default like GooglePay is enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
norbertschuler committed Jan 13, 2024
1 parent 5bbb787 commit e9c24eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const PaymentRequestCustomButton = ({
frequency,
paymentSetup,
}: PaymentButtonProps): ReactElement | null => {
const isApplePayEnabled = process.env.ENABLE_APPLE_PAY === "true" || false;
const isApplePayEnabled = process.env.ENABLE_APPLE_PAY === "true" || true;
const isGooglePayEnabled = process.env.ENABLE_GOOGLE_PAY === "true" || true;
const { t, ready } = useTranslation(["common"]);
const { paymentRequest, setPaymentRequest } = useContext(QueryParamContext);
Expand Down

0 comments on commit e9c24eb

Please sign in to comment.