Skip to content

Commit f947978

Browse files
Include top above nav ad slot mobile on puzzles pages
1 parent 6ec5418 commit f947978

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dotcom-rendering/src/layouts/PuzzlesLayout.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('PuzzlesLayout', () => {
4747
).not.toBeInTheDocument();
4848
});
4949

50-
it('keeps global chrome while respecting ad-free input', () => {
50+
it('renders both header slots without experiment participation and respects ad-free input', () => {
5151
const { rerender } = render(
5252
<PuzzlesLayout NAV={nav} puzzlesPage={page(true) as never} />,
5353
);
@@ -62,7 +62,7 @@ describe('PuzzlesLayout', () => {
6262
).toBeInTheDocument();
6363
expect(
6464
document.getElementById('dfp-ad--mobile-above-nav'),
65-
).not.toBeInTheDocument();
65+
).toBeInTheDocument();
6666
});
6767
it('renders the illustrated header with responsive sources and a fixed height', () => {
6868
render(<PuzzlesLayout NAV={nav} puzzlesPage={page() as never} />);

dotcom-rendering/src/layouts/PuzzlesLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const PuzzlesLayout = ({
110110
padSides={false}
111111
shouldCenter={false}
112112
>
113-
<HeaderAdSlot />
113+
<HeaderAdSlot includeMobile={true} />
114114
</Section>
115115
</Stuck>
116116
)}

0 commit comments

Comments
 (0)