From ff4474c2af472fbd0784a3dfb4dbdff196cc2d7b Mon Sep 17 00:00:00 2001 From: Pardeep Gera Date: Tue, 23 Jan 2024 19:47:59 +0530 Subject: [PATCH] updated the GTM id from Staging to Production --- scripts/delayed.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/delayed.js b/scripts/delayed.js index abf1e64..6313b95 100644 --- a/scripts/delayed.js +++ b/scripts/delayed.js @@ -10,7 +10,7 @@ sampleRUM('cwv'); function loadGTM() { const scriptTag = document.createElement('script'); scriptTag.innerHTML = ` - let gtmId = 'GTM-W93WJWB9'; + let gtmId = 'GTM-MLWV3QQ'; // googleTagManager (function (w, d, s, l, i) { w[l] = w[l] || []; @@ -29,7 +29,7 @@ function loadGTM() { document.head.prepend(scriptTag); const noScriptTag = document.createElement('noscript'); noScriptTag.innerHTML = ` - `; document.body.prepend(noScriptTag);