diff --git a/app/layout.tsx b/app/layout.tsx index cd2e9ef..26164e1 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,7 @@ import type { Metadata } from "next"; +import Script from "next/script"; import { AppShell } from "@/components/app-shell"; +import { randomUUIDPolyfillScript } from "@/lib/client/random-uuid-polyfill"; import "./globals.css"; export const metadata: Metadata = { @@ -11,6 +13,11 @@ export default function RootLayout({ children }: { children: React.ReactNode }) return ( +