We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518ddba commit 9d1f025Copy full SHA for 9d1f025
dotcom-rendering/src/components/ArticleMeta.apps.tsx
@@ -254,6 +254,9 @@ export const ArticleMetaApps = ({
254
const isImmersiveOrAnalysisWithMultipleAuthors =
255
(isAnalysis || isImmersive) && !!byline && isUndefined(soleContributor);
256
257
+ const shouldShowListenToArticleButton =
258
+ !!pageId && !(isLiveBlog || isPicture || isGallery);
259
+
260
return (
261
<div
262
className={
@@ -365,7 +368,7 @@ export const ArticleMetaApps = ({
365
368
</MetaGridBranding>
366
369
)}
367
370
</div>
- {pageId !== undefined && (
371
+ {shouldShowListenToArticleButton && (
372
<Island priority="feature" defer={{ until: 'visible' }}>
373
<ListenToArticle articleId={pageId} />
374
</Island>
0 commit comments