Skip to content

Commit

Permalink
enable swish by default
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuesken committed Feb 5, 2025
1 parent 8638936 commit ceabca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gateway/GatewayModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ceabca8

Please sign in to comment.