diff --git a/app/layout.tsx b/app/layout.tsx index 46f6ca8ba..afd7345b9 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,7 +6,7 @@ import { getClientConfig } from "./config/client"; import type { Metadata, Viewport } from "next"; import { SpeedInsights } from "@vercel/speed-insights/next"; import { getServerSideConfig } from "./config/server"; -import { GoogleTagManager, GoogleAnalytics } from "@next/third-parties/google"; +import { GoogleTagManager } from "@next/third-parties/google"; const serverConfig = getServerSideConfig(); import { Providers } from "@/app/providers"; // import { Viewport } from "next"; @@ -87,16 +87,16 @@ export default function RootLayout({ )} - {serverConfig?.gtmId && ( - <> - - - )} - {serverConfig?.gaId && ( - <> - - - )} + {/*{serverConfig?.gtmId && (*/} + {/* <>*/} + {/* */} + {/* */} + {/*)}*/} + {/*{serverConfig?.gaId && (*/} + {/* <>*/} + {/* */} + {/* */} + {/*)}*/} );