- { settings.sandboxConnected && (
-
- }
- >
-
-
-
-
-
-
- ) }
- { ! settings.sandboxConnected && (
-
- updateFormValue(
- 'sandboxConnected',
- true
- )
- }
- >
- { __(
- 'Connect Sandbox Account',
- 'woocommerce-paypal-payments'
- ) }
-
- ),
- },
- {
- id: 'manual_connect',
- value: 'manual_connect',
- label: __(
- 'Manual Connect',
- 'woocommerce-paypal-payments'
- ),
- description: sprintf(
- __(
- 'For advanced users: Connect a custom PayPal REST app for full control over your integration. For more information on creating a PayPal REST application, click here.',
- 'woocommerce-paypal-payments'
- ),
- '#'
- ),
- additionalContent: (
- <>
-
-
-
- >
- ),
- },
- ] }
- actionProps={ {
- name: 'paypal_connect_sandbox',
- key: 'sandboxMode',
- currentValue: settings.sandboxMode,
- callback: updateFormValue,
- } }
- />
- ) }
-
- );
-};
-
-export default Sandbox;