Skip to content

Commit 1020d1c

Browse files
committed
reduce max url length
1 parent ba4e9b9 commit 1020d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/common/components/shell/gtm/safe-gtm.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { GoogleTagManager } from "@next/third-parties/google"
44
import { useEffect, useState } from "react";
55

6-
const MAX_URL_LENGTH = 6000;
6+
const MAX_URL_LENGTH = 4000;
77

88
export function SafeGTM({ gtmId}: { gtmId: string}) {
99
const [canLoad, setCanLoad] = useState(false)

0 commit comments

Comments
 (0)