From 61e8f8159dd85f6fa8178fa54ad544d283526a57 Mon Sep 17 00:00:00 2001 From: Paul Dempsey <76729591+paul-daniel-dempsey@users.noreply.github.com> Date: Wed, 12 Feb 2025 09:42:38 +0000 Subject: [PATCH] feat: viewable in Prod --- .../guardianAdLiteLanding.tsx | 32 ++++--------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/support-frontend/assets/pages/[countryGroupId]/guardianAdLiteLanding/guardianAdLiteLanding.tsx b/support-frontend/assets/pages/[countryGroupId]/guardianAdLiteLanding/guardianAdLiteLanding.tsx index 14efbe1bb5..948a7e5fe6 100644 --- a/support-frontend/assets/pages/[countryGroupId]/guardianAdLiteLanding/guardianAdLiteLanding.tsx +++ b/support-frontend/assets/pages/[countryGroupId]/guardianAdLiteLanding/guardianAdLiteLanding.tsx @@ -1,8 +1,5 @@ -import { css } from '@emotion/react'; -import { textSans24 } from '@guardian/source/foundations'; import type { CountryGroupSwitcherProps } from 'components/countryGroupSwitcher/countryGroupSwitcher'; import { GBPCountries } from 'helpers/internationalisation/countryGroup'; -import { isProd } from 'helpers/urls/url'; import { getUser } from 'helpers/user/user'; import type { GeoId } from 'pages/geoIdConfig'; import { getGeoIdConfig } from 'pages/geoIdConfig'; @@ -42,28 +39,13 @@ export function GuardianAdLiteLanding({ } return ( - {!isProd() ? ( - <> - - - - - ) : ( -
- Under Construction. Viewable within Code or Dev environments only. -
- )} + + +
); }