diff --git a/dotcom-rendering/src/components/Card/Card.tsx b/dotcom-rendering/src/components/Card/Card.tsx index deb42e7a2d4..a4b00de2af4 100644 --- a/dotcom-rendering/src/components/Card/Card.tsx +++ b/dotcom-rendering/src/components/Card/Card.tsx @@ -602,9 +602,7 @@ export const Card = ({ return 'tablet'; }; - const shouldShowTrailText = isMoreGalleriesOnwardContent - ? media?.type !== 'podcast' && isOnwardSplash - : media?.type !== 'podcast'; + const shouldShowTrailText = media?.type !== 'podcast'; /** * Determines the gap of between card components based on card properties diff --git a/dotcom-rendering/src/components/MoreGalleries.tsx b/dotcom-rendering/src/components/MoreGalleries.tsx index 5b3ee49a9ee..6444055b936 100644 --- a/dotcom-rendering/src/components/MoreGalleries.tsx +++ b/dotcom-rendering/src/components/MoreGalleries.tsx @@ -160,6 +160,7 @@ const getDefaultCardProps = ( trail: TrailType, discussionApiUrl: string, format: ArticleFormat, + showTrailText: boolean, serverTime?: number, ) => { const defaultProps: CardProps = { @@ -189,7 +190,7 @@ const getDefaultCardProps = ( branding: trail.branding, serverTime, imageLoading: 'lazy', - trailText: trail.trailText, + trailText: showTrailText ? trail.trailText : undefined, showAge: false, showTopBarDesktop: false, showTopBarMobile: false, @@ -238,6 +239,7 @@ export const MoreGalleries = (props: Props) => { firstTrail, props.discussionApiUrl, props.format, + true, props.serverTime, )} /> @@ -261,6 +263,7 @@ export const MoreGalleries = (props: Props) => { trail, props.discussionApiUrl, props.format, + false, props.serverTime, )} mediaSize="medium"