From fd3c3ac8e8b693c1474d7c7dc3e0628cbf73846a Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Mon, 11 Sep 2023 11:14:43 +0200 Subject: [PATCH] Bypass onboarding for now --- modules/ppcp-applepay/services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ppcp-applepay/services.php b/modules/ppcp-applepay/services.php index 8c5e6e313..01b9f1e31 100644 --- a/modules/ppcp-applepay/services.php +++ b/modules/ppcp-applepay/services.php @@ -33,7 +33,7 @@ return array( 'applepay.enabled' => static function ( ContainerInterface $container ): bool { $status = $container->get( 'applepay.apple-product-status' ); assert( $status instanceof AppleProductStatus ); - return $status->apple_is_active(); + return true; }, 'applepay.server_supported' => static function ( ContainerInterface $container ): bool { return ! empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] !== 'off';