1 parent 6f8eabc commit 128fad6Copy full SHA for 128fad6
1 file changed
dotcom-rendering/src/components/SlotBodyEnd.island.tsx
@@ -132,8 +132,17 @@ export const SlotBodyEnd = ({
132
useState<Promise<WeeklyArticleHistory | undefined>>();
133
134
const isInUS = countryCode === 'US';
135
+ const isInArticleEndHeaderBiddingTest = abTests?.isUserInTestGroup(
136
+ 'commercial-article-end-header-bidding',
137
+ 'variant',
138
+ );
139
- const showArticleEndSlot = renderAds && !isLabs && isInUS && articleEndSlot;
140
+ const showArticleEndSlot =
141
+ renderAds &&
142
+ !isLabs &&
143
+ isInUS &&
144
+ articleEndSlot &&
145
+ isInArticleEndHeaderBiddingTest;
146
147
useEffect(() => {
148
setAsyncArticleCount(
0 commit comments