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
3 changes: 3 additions & 0 deletions client/components/jetpack/wpcom-business-at/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import WarningList from 'calypso/blocks/eligibility-warnings/warning-list';
import DocumentHead from 'calypso/components/data/document-head';
import QueryAutomatedTransferEligibility from 'calypso/components/data/query-atat-eligibility';
import QuerySiteFeatures from 'calypso/components/data/query-site-features';
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 @@ -296,6 +297,7 @@ export default function WPCOMBusinessAT( {
<p>{ translate( 'Loading…' ) }</p>
</div>
</Page>
{ ! isJetpackCloud() && <JetpackFooter /> }
</Main>
);
}
Expand Down Expand Up @@ -359,6 +361,7 @@ export default function WPCOMBusinessAT( {

{ ! isJetpackCloud() && <WhatIsJetpack className="wpcom-business-at__footer" /> }
</Page>
{ ! isJetpackCloud() && <JetpackFooter /> }

<Dialog
isVisible={ showDialog }
Expand Down
2 changes: 2 additions & 0 deletions client/my-sites/backup/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import QuerySiteProducts from 'calypso/components/data/query-site-products';
import QuerySiteSettings from 'calypso/components/data/query-site-settings';
import BackupActionsToolbar from 'calypso/components/jetpack/backup-actions-toolbar';
import BackupPlaceholder from 'calypso/components/jetpack/backup-placeholder';
import JetpackFooter from 'calypso/components/jetpack/jetpack-footer';
import JetpackTitle from 'calypso/components/jetpack-title';
import { useLocalizedMoment } from 'calypso/components/localized-moment';
import Main from 'calypso/components/main';
Expand Down Expand Up @@ -97,6 +98,7 @@ const BackupPage = ( { queryDate } ) => {
<AdminContent selectedDate={ selectedDate } />
</>
) }
{ isWpcom && <JetpackFooter /> }
</Main>
</div>
);
Expand Down
2 changes: 2 additions & 0 deletions client/my-sites/backup/wpcom-backup-upsell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import JetpackBackupSVG from 'calypso/assets/images/illustrations/jetpack-backup
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 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 @@ -291,6 +292,7 @@ export default function WPCOMUpsellPage( { reason }: { reason: string } ) {
>
{ body }
</Page>
<JetpackFooter />
</Main>
);
}
2 changes: 2 additions & 0 deletions client/my-sites/backup/wpcom-upsell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Page } from '@wordpress/admin-ui';
import { useTranslate } from 'i18n-calypso';
import JetpackBackupSVG from 'calypso/assets/images/illustrations/jetpack-backup.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 @@ -114,6 +115,7 @@ export default function WPCOMUpsellPage() {

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