From e98b4f91b478829feb37b95fb34637eeaeae29fa Mon Sep 17 00:00:00 2001 From: Aaron Moore Date: Mon, 21 Oct 2024 11:42:51 +0100 Subject: [PATCH] Update index.tsx --- src/app/pages/ArticlePage/ElectionBanner/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/ArticlePage/ElectionBanner/index.tsx b/src/app/pages/ArticlePage/ElectionBanner/index.tsx index e638174325d..2d5c1eac6b4 100644 --- a/src/app/pages/ArticlePage/ElectionBanner/index.tsx +++ b/src/app/pages/ArticlePage/ElectionBanner/index.tsx @@ -17,8 +17,8 @@ export default function ElectionBanner({ aboutTags }: { aboutTags: Tag[] }) { const { enabled: electionBannerEnabled }: { enabled: boolean | null } = useToggle('articleElectionBanner'); - if (isLite) return null; if (isLive()) return null; // TODO: Remove once going Live + if (isLite) return null; const { iframeHeight, iframeSrc, iframeSrcAmp, iframeTitle, thingIds } = BANNER_CONFIG;