Skip to content

Commit abd3149

Browse files
removing console logs!
1 parent 60b7b55 commit abd3149

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dotcom-rendering/src/components/EnhanceAffiliateLinks.importable.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { useBetaAB } from '../lib/useAB';
1111
* - utm_medium,
1212
* - utm_campaign,
1313
* - utm_content,
14-
* - utm_term,
14+
* - utm_term
1515
*
1616
* ## Why does this need to be an Island?
1717
*
@@ -55,8 +55,6 @@ export const EnhanceAffiliateLinks = () => {
5555
.filter(Boolean)
5656
.join('|');
5757

58-
console.log(utmString);
59-
6058
for (const link of allLinksOnPage) {
6159
if (isSkimlink(link.href)) {
6260
const referrerDomain =
@@ -71,8 +69,6 @@ export const EnhanceAffiliateLinks = () => {
7169
abTestString ? `|abTestParticipations|${abTestString}` : ''
7270
}${utmString ? `|${utmString}` : ''}`;
7371

74-
console.log(xcustValue);
75-
7672
link.href = `${link.href}&xcust=${encodeURIComponent(
7773
xcustValue,
7874
)}`;

0 commit comments

Comments
 (0)