Skip to content

Commit 0bc162b

Browse files
authored
fix: update-google-analytics-tag (#368)
## Summary by Sourcery Bug Fixes: - Replace the existing Google Analytics tracking ID with a new one
1 parent 66beddd commit 0bc162b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { PlainChat } from "@/components/PlainChat";
2+
import { PostHogProvider } from "@/components/PostHogProvider";
23
import { GoogleAnalytics } from "@next/third-parties/google";
34
import { RootProvider } from "fumadocs-ui/provider";
45
import type { Viewport } from "next";
56
import { Figtree } from "next/font/google";
67
import type { ReactNode } from "react";
78
import "./global.css";
8-
import { PostHogProvider } from "@/components/PostHogProvider";
99

1010
const figtree = Figtree({
1111
subsets: ["latin"],
@@ -34,7 +34,7 @@ export default function Layout({ children }: { children: ReactNode }) {
3434
>
3535
{children}
3636
</RootProvider>
37-
<GoogleAnalytics gaId="G-N1MMHFDVZZ" />
37+
<GoogleAnalytics gaId="G-4WNKFB6Q0V" />
3838
<PlainChat />
3939
</PostHogProvider>
4040
</body>

0 commit comments

Comments
 (0)