From ceabca84731cb34abb9ab58253bdc8e1c981f47e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=BCsken?= Date: Wed, 5 Feb 2025 12:37:15 +0100 Subject: [PATCH] enable swish by default --- src/Gateway/GatewayModule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gateway/GatewayModule.php b/src/Gateway/GatewayModule.php index a7a06172..f51dcfa0 100644 --- a/src/Gateway/GatewayModule.php +++ b/src/Gateway/GatewayModule.php @@ -124,7 +124,7 @@ public function services(): array return $method['id'] !== Constants::ALMA; }); } - $swishFlag = (bool) apply_filters('inpsyde.feature-flags.mollie-woocommerce.swish_enabled', false); + $swishFlag = (bool) apply_filters('inpsyde.feature-flags.mollie-woocommerce.swish_enabled', true); if (!$swishFlag) { $availablePaymentMethods = array_filter($availablePaymentMethods, static function ($method) { return $method['id'] !== Constants::SWISH;