diff --git a/dotcom-rendering/src/components/DecideFrontsAdSlots.tsx b/dotcom-rendering/src/components/DecideFrontsAdSlots.tsx
index 87ac95e909..af16efe188 100644
--- a/dotcom-rendering/src/components/DecideFrontsAdSlots.tsx
+++ b/dotcom-rendering/src/components/DecideFrontsAdSlots.tsx
@@ -1,4 +1,3 @@
-import { css } from '@emotion/react';
import { Hide } from '@guardian/source/react-components';
import type { ReactNode } from 'react';
import { getMerchHighPosition } from '../lib/getFrontsAdPositions';
@@ -6,11 +5,6 @@ import { palette as themePalette } from '../palette';
import { AdSlot } from './AdSlot.web';
import { Section } from './Section';
-/** !!! DO NOT MERGE TO MAIN! !!! */
-const tempHighlighting = (colour: string) => css`
- border: 4px solid ${colour};
-`;
-
export const decideMerchHighAndMobileAdSlots = (
renderAds: boolean,
index: number,
@@ -30,13 +24,10 @@ export const decideMerchHighAndMobileAdSlots = (
if (shouldInsertMerchHighSlot) {
return (
-
+
);
}
@@ -44,14 +35,11 @@ export const decideMerchHighAndMobileAdSlots = (
if (mobileAdPositions.includes(index)) {
return (
-
+
);
}