Skip to content

Commit

Permalink
Remove hard-coded url
Browse files Browse the repository at this point in the history
  • Loading branch information
markpadbe committed Feb 24, 2025
1 parent 1ac0865 commit 147b7db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libs/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1184,8 +1184,7 @@ async function checkForPageMods() {
const promo = getMepEnablement('manifestnames', PROMO_PARAM);
const target = martech === 'off' ? false : getMepEnablement('target');
const xlg = martech === 'off' ? false : getMepEnablement('xlg');
const isPOC = (document.title === '404' && window.location.pathname === '/products/photoshop/123.html');
const ajo = martech === 'off' ? false : isPOC || getMepEnablement('ajo');
const ajo = martech === 'off' ? false : getMepEnablement('ajo');

if (!(pzn || target || promo || mepParam
|| mepHighlight || mepButton || mepParam === '' || xlg || ajo)) return;
Expand Down

0 comments on commit 147b7db

Please sign in to comment.