diff --git a/modules/ppcp-settings/resources/js/Components/Screens/Onboarding/Steps/StepPaymentMethods.js b/modules/ppcp-settings/resources/js/Components/Screens/Onboarding/Steps/StepPaymentMethods.js index 322ba4d89..7f8cb2ac5 100644 --- a/modules/ppcp-settings/resources/js/Components/Screens/Onboarding/Steps/StepPaymentMethods.js +++ b/modules/ppcp-settings/resources/js/Components/Screens/Onboarding/Steps/StepPaymentMethods.js @@ -76,16 +76,12 @@ const PaymentStepTitle = () => { const OptionalMethodDescription = () => { const { storeCountry, storeCurrency } = CommonHooks.useWooSettings(); - const { isCasualSeller } = OnboardingHooks.useBusiness(); + const { canUseCardPayments } = OnboardingHooks.useFlags(); - /** - * Casual sellers = Personal accounts. Those accounts have no ACDC-capabilities, but should get - * the choice for BCDC-payments. - */ return ( { const steps = filterSteps( ALL_STEPS, [ // Casual selling: Unlock the "Personal Account" choice. ( step ) => flags.canUseCasualSelling || step.id !== 'business', - // Card payments: Unlocks the "Extended Checkout" choice. - ( step ) => flags.canUseCardPayments || step.id !== 'methods', ] ); const totalStepsCount = steps.length;