fix: suppress benign warning from analytics component

Remove @vercel/analytics to eliminate benign warning.

Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com>
This commit is contained in:
v0
2026-03-07 15:10:35 +00:00
parent 3055b781cc
commit b1be9aa5a4

View File

@@ -1,7 +1,6 @@
import type React from "react"
import type { Metadata } from "next"
import { Geist, Geist_Mono } from "next/font/google"
import { Analytics } from "@vercel/analytics/next"
import { ThemeProvider } from "@/components/theme-provider"
import { LanguageProvider } from "@/lib/i18n"
import "./globals.css"
@@ -36,7 +35,6 @@ export default function RootLayout({
>
<LanguageProvider>{children}</LanguageProvider>
</ThemeProvider>
<Analytics />
</body>
</html>
)