diff --git a/modules/ppcp-settings/resources/js/Components/Screens/SendOnlyMessage.js b/modules/ppcp-settings/resources/js/Components/Screens/SendOnlyMessage.js
index 884f790fc..56d780250 100644
--- a/modules/ppcp-settings/resources/js/Components/Screens/SendOnlyMessage.js
+++ b/modules/ppcp-settings/resources/js/Components/Screens/SendOnlyMessage.js
@@ -1,18 +1,54 @@
import { __, sprintf } from '@wordpress/i18n';
+import Container from '../ReusableComponents/Container';
+import SettingsCard from '../ReusableComponents/SettingsCard';
+import SettingsNavigation from './SettingsNavigation';
+
const SendOnlyMessage = () => {
const settingsPageUrl = '/wp-admin/admin.php?page=wc-settings';
- const message = sprintf(
- /* translators: 1: URL to the WooCommerce store location settings */
- __(
- 'Your current WooCommerce store location is in a "send-only" country, according to PayPal\'s policies. Sellers in these countries are unable to receive payments via PayPal. Since receiving payments is essential for using the PayPal Payments extension, you will not be able to connect your PayPal account while operating from a "send-only" country. To activate PayPal, please update your WooCommerce store location to a supported region and connect a PayPal account eligible for receiving payments.',
- 'woocommerce-paypal-payments'
- ),
- settingsPageUrl
+ return (
+ <>
+
+ { __(
+ 'Your current WooCommerce store location is in a "send-only" country, according to PayPal\'s policies',
+ 'woocommerce-paypal-payments'
+ ) }
+
+ { __(
+ 'Since receiving payments is essential for using the PayPal Payments extension, you are unable to connect your PayPal account while operating from a "send-only" country.',
+ 'woocommerce-paypal-payments'
+ ) }
+ WooCommerce store location to a supported region and connect a PayPal account eligible for receiving payments.',
+ 'woocommerce-paypal-payments'
+ ),
+ settingsPageUrl
+ ),
+ } }
+ />
+