Enable feature flag for configurator module

This commit is contained in:
Narek Zakarian 2024-03-05 17:07:16 +04:00
parent f2a741094c
commit b72898c290
No known key found for this signature in database
GPG key ID: 07AFD7E7A9C164A7

View file

@ -29,7 +29,7 @@ class PayLaterConfiguratorModule implements ModuleInterface {
return apply_filters(
// phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
'woocommerce.feature-flags.woocommerce_paypal_payments.paylater_configurator_enabled',
getenv( 'PCP_PAYLATER_CONFIGURATOR' ) === '1'
getenv( 'PCP_PAYLATER_CONFIGURATOR' ) !== '0'
);
}