👔 Force BCDC choices for personal accounts

This commit is contained in:
Philipp Stracker 2025-02-07 19:03:20 +01:00
parent 7369b8dbda
commit 5e00c7d082
No known key found for this signature in database

View file

@ -47,11 +47,16 @@ const PaymentStepTitle = () => {
const OptionalMethodDescription = () => {
const { storeCountry, storeCurrency } = CommonHooks.useWooSettings();
const { isCasualSeller } = OnboardingHooks.useBusiness();
/**
* Casual sellers = Personal accounts. Those accounts have no ACDC-capabilities, but should get
* the choice for BCDC-payments.
*/
return (
<PaymentFlow
onlyOptional={ true }
useAcdc={ true }
useAcdc={ ! isCasualSeller }
isFastlane={ true }
isPayLater={ true }
storeCountry={ storeCountry }