Add Vaulting to onboarding products

This commit is contained in:
Philipp Stracker 2024-12-20 13:57:49 +01:00
parent 5b80e00c54
commit 62dda0da3c
No known key found for this signature in database

View file

@ -52,9 +52,6 @@ export const determineProducts = ( state ) => {
* The store uses the Express-checkout product. * The store uses the Express-checkout product.
*/ */
derivedProducts.push( 'EXPRESS_CHECKOUT' ); derivedProducts.push( 'EXPRESS_CHECKOUT' );
// TODO: Add the "BCDC" product/feature
// Requirement: "EXPRESS_CHECKOUT with BCDC"
} else { } else {
/** /**
* Branch 3: Merchant is business, and can use CC payments. * Branch 3: Merchant is business, and can use CC payments.
@ -64,8 +61,7 @@ export const determineProducts = ( state ) => {
} }
if ( canUseVaulting ) { if ( canUseVaulting ) {
// TODO: Add the "Vaulting" product/feature derivedProducts.push( 'ADVANCED_VAULTING' );
// Requirement: "... with Vault"
} }
return derivedProducts; return derivedProducts;