We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06b486b commit e2cca12Copy full SHA for e2cca12
src/features/common/components/shell/gtm/safe-gtm.component.tsx
@@ -9,7 +9,7 @@ export function SafeGTM({ gtmId}: { gtmId: string}) {
9
const [canLoad, setCanLoad] = useState(false)
10
11
useEffect(() => {
12
- const hash = window.location.hash
+ /* const hash = window.location.hash
13
const hasLargeHash = hash.length > MAX_HASH_LENGTH
14
let originalHash = ""
15
if(hasLargeHash) {
@@ -18,7 +18,7 @@ export function SafeGTM({ gtmId}: { gtmId: string}) {
18
setTimeout(() => {
19
window.location.hash = originalHash
20
}, 500)
21
- }
+ } */
22
setCanLoad(true)
23
}, [])
24
0 commit comments