From 663f208a4afe80b556f57459eaefbadffb3cfc63 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Mon, 27 Oct 2025 16:14:39 -0400 Subject: [PATCH] chore(docs): update analytics script --- docs/app/layout.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/app/layout.tsx b/docs/app/layout.tsx index 6dde91d..c1d7a21 100644 --- a/docs/app/layout.tsx +++ b/docs/app/layout.tsx @@ -1,13 +1,13 @@ -import '@/app/global.css'; -import { RootProvider } from 'fumadocs-ui/provider/next'; -import { Inter } from 'next/font/google'; +import "@/app/global.css"; +import { RootProvider } from "fumadocs-ui/provider/next"; +import { Inter } from "next/font/google"; import Script from "next/script"; const inter = Inter({ - subsets: ['latin'], + subsets: ["latin"], }); -export default function Layout({ children }: LayoutProps<'/'>) { +export default function Layout({ children }: LayoutProps<"/">) { return (
@@ -15,9 +15,6 @@ export default function Layout({ children }: LayoutProps<'/'>) {