Skip to content

Commit

Permalink
Merge 144525c into edc02ba
Browse files Browse the repository at this point in the history
  • Loading branch information
dskamiotis authored Oct 30, 2024
2 parents edc02ba + 144525c commit 73ba8ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/empty-ghosts-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@guardian/commercial': patch
---

add mobile banner to interactives
6 changes: 5 additions & 1 deletion src/lib/header-bidding/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ const contains = (

const isValidPageForMobileSticky = (): boolean => {
const { contentType, pageId } = window.guardian.config.page;
return contentType === 'Article' || pageId.startsWith('football/');
return (
contentType === 'Article' ||
contentType === 'Interactive' ||
pageId.startsWith('football/')
);
};

/**
Expand Down

0 comments on commit 73ba8ce

Please sign in to comment.