diff --git a/client/my-sites/scan/main.tsx b/client/my-sites/scan/main.tsx index c2694573c984..74af034ccff8 100644 --- a/client/my-sites/scan/main.tsx +++ b/client/my-sites/scan/main.tsx @@ -9,6 +9,7 @@ import JetpackReviewPrompt from 'calypso/blocks/jetpack-review-prompt'; import TimeMismatchWarning from 'calypso/blocks/time-mismatch-warning'; import DocumentHead from 'calypso/components/data/document-head'; import QueryJetpackScan from 'calypso/components/data/query-jetpack-scan'; +import JetpackFooter from 'calypso/components/jetpack/jetpack-footer'; import ScanPlaceholder from 'calypso/components/jetpack/scan-placeholder'; import ScanThreats from 'calypso/components/jetpack/scan-threats'; import SecurityIcon from 'calypso/components/jetpack/security-icon'; @@ -386,6 +387,7 @@ class ScanPage extends Component< Props > { ) : ( content ) } + { isWpcom && } ); } diff --git a/client/my-sites/scan/wpcom-atomic-transfer.tsx b/client/my-sites/scan/wpcom-atomic-transfer.tsx index ba72f09bbded..3e463e8b7e7c 100644 --- a/client/my-sites/scan/wpcom-atomic-transfer.tsx +++ b/client/my-sites/scan/wpcom-atomic-transfer.tsx @@ -6,6 +6,7 @@ import { useSelector } from 'react-redux'; import JetpackScanSVG from 'calypso/assets/images/illustrations/jetpack-scan.svg'; import QueryJetpackScan from 'calypso/components/data/query-jetpack-scan'; import QuerySiteFeatures from 'calypso/components/data/query-site-features'; +import JetpackFooter from 'calypso/components/jetpack/jetpack-footer'; import WPCOMBusinessAT from 'calypso/components/jetpack/wpcom-business-at'; import JetpackTitle from 'calypso/components/jetpack-title'; import Main from 'calypso/components/main'; @@ -38,6 +39,7 @@ const ScanLoadingPlaceholder = () => { >
+ ); }; diff --git a/client/my-sites/scan/wpcom-scan-upsell.tsx b/client/my-sites/scan/wpcom-scan-upsell.tsx index e2b2409f9155..0b9bbad4b788 100644 --- a/client/my-sites/scan/wpcom-scan-upsell.tsx +++ b/client/my-sites/scan/wpcom-scan-upsell.tsx @@ -11,6 +11,7 @@ import JetpackScanSVG from 'calypso/assets/images/illustrations/jetpack-scan.svg import VaultPressLogo from 'calypso/assets/images/jetpack/vaultpress-logo.svg'; import DocumentHead from 'calypso/components/data/document-head'; import JetpackDisconnectedWPCOM from 'calypso/components/jetpack/jetpack-disconnected-wpcom'; +import JetpackFooter from 'calypso/components/jetpack/jetpack-footer'; import SecurityIcon from 'calypso/components/jetpack/security-icon'; import JetpackTitle from 'calypso/components/jetpack-title'; import Main from 'calypso/components/main'; @@ -205,6 +206,7 @@ export default function WPCOMScanUpsellPage( { reason }: { reason?: string } ) { > { body } + ); } diff --git a/client/my-sites/scan/wpcom-upsell.tsx b/client/my-sites/scan/wpcom-upsell.tsx index 55ca0d6e3d49..9ca9100c2543 100644 --- a/client/my-sites/scan/wpcom-upsell.tsx +++ b/client/my-sites/scan/wpcom-upsell.tsx @@ -3,6 +3,7 @@ import { Page } from '@wordpress/admin-ui'; import { useTranslate } from 'i18n-calypso'; import JetpackScanSVG from 'calypso/assets/images/illustrations/jetpack-scan.svg'; import DocumentHead from 'calypso/components/data/document-head'; +import JetpackFooter from 'calypso/components/jetpack/jetpack-footer'; import WhatIsJetpack from 'calypso/components/jetpack/what-is-jetpack'; import JetpackTitle from 'calypso/components/jetpack-title'; import Main from 'calypso/components/main'; @@ -62,6 +63,7 @@ export default function WPCOMScanUpsellPage() { + ); }