diff --git a/client/components/mma/accountoverview/AccountOverview.tsx b/client/components/mma/accountoverview/AccountOverview.tsx index b2c22c58f..ad20e0215 100644 --- a/client/components/mma/accountoverview/AccountOverview.tsx +++ b/client/components/mma/accountoverview/AccountOverview.tsx @@ -51,7 +51,6 @@ import type { IsFromAppProps } from '../shared/IsFromAppProps'; import { NewspaperArchiveCta } from '../shared/NewspaperArchiveCta'; import { nonServiceableCountries } from '../shared/NonServiceableCountries'; import { PaymentFailureAlertIfApplicable } from '../shared/PaymentFailureAlertIfApplicable'; -import { CanadaStrike } from './CanadaStrike'; import { CancelledProductCard } from './CancelledProductCard'; import { EmptyAccountOverview } from './EmptyAccountOverview'; import { InAppPurchaseCard } from './InAppPurchaseCard'; @@ -198,18 +197,6 @@ const AccountOverviewPage = ({ isFromApp }: IsFromAppProps) => { return specificProductType.groupedProductType; }; - const possiblyAffectedByCanadaPostStrike = allActiveProductDetails.some( - (product) => { - const deliveryCountry = - product.subscription.deliveryAddress?.country.toUpperCase(); - return ( - (product.tier === 'Tier Three' || - product.tier === 'Guardian Weekly - ROW') && - (deliveryCountry === 'CANADA' || deliveryCountry === 'CA') - ); - }, - ); - return ( <> { productDetails={allActiveProductDetails} isFromApp={isFromApp} /> - {possiblyAffectedByCanadaPostStrike && } {uniqueProductCategories.map((category) => { const groupedProductType = GROUPED_PRODUCT_TYPES[category]; const activeProductsInCategory = allActiveProductDetails.filter( diff --git a/client/components/mma/accountoverview/CanadaStrike.tsx b/client/components/mma/accountoverview/CanadaStrike.tsx deleted file mode 100644 index 1444ffbe5..000000000 --- a/client/components/mma/accountoverview/CanadaStrike.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { css } from '@emotion/react'; -import { Link } from '@guardian/source/react-components'; -import { ProblemAlert } from '../shared/ProblemAlert'; - -export const CanadaStrike = () => ( - -

- Due to industrial action by Canada Post, it is not possible - to deliver your copies of the Guardian Weekly. You are - welcome to pause your subscription during the period of - industrial action, details on how to do so can be found{' '} - - here - - . -

-

- If you have reached your allowance limit please contact{' '} - - customer.help@theguardian.com - -

- - } - additionalcss={css` - margin-top: 30px; - `} - /> -);