From 684eaf597ba8658318529125439ed40f7d4f3df3 Mon Sep 17 00:00:00 2001 From: Daniel Clifton <110032454+DanielCliftonGuardian@users.noreply.github.com> Date: Tue, 22 Oct 2024 16:54:56 +0100 Subject: [PATCH] Revert "Exclude the filter articles from amp" --- dotcom-rendering/src/components/Elements.amp.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/dotcom-rendering/src/components/Elements.amp.tsx b/dotcom-rendering/src/components/Elements.amp.tsx index ec766ba697..de24f1e403 100644 --- a/dotcom-rendering/src/components/Elements.amp.tsx +++ b/dotcom-rendering/src/components/Elements.amp.tsx @@ -99,13 +99,7 @@ export const isAmpSupported = ({ if (!hasAmpInteractiveTag) return false; } - if ( - tags.some( - (tag) => - tag.id === 'type/video' || - tag.id === 'thefilter/series/the-filter', - ) - ) { + if (tags.some((tag) => tag.id === 'type/video')) { return false; }