Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/my-sites/scan/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -386,6 +387,7 @@ class ScanPage extends Component< Props > {
) : (
content
) }
{ isWpcom && <JetpackFooter /> }
</Main>
);
}
Expand Down
2 changes: 2 additions & 0 deletions client/my-sites/scan/wpcom-atomic-transfer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -38,6 +39,7 @@ const ScanLoadingPlaceholder = () => {
>
<div className="business-at-switch placeholder__primary-promo"></div>
</Page>
<JetpackFooter />
</Main>
);
};
Expand Down
2 changes: 2 additions & 0 deletions client/my-sites/scan/wpcom-scan-upsell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -205,6 +206,7 @@ export default function WPCOMScanUpsellPage( { reason }: { reason?: string } ) {
>
{ body }
</Page>
<JetpackFooter />
</Main>
);
}
2 changes: 2 additions & 0 deletions client/my-sites/scan/wpcom-upsell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -62,6 +63,7 @@ export default function WPCOMScanUpsellPage() {

<WhatIsJetpack />
</Page>
<JetpackFooter />
</Main>
);
}
Loading