We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca8585 commit f143dfdCopy full SHA for f143dfd
src/root.tsx
@@ -32,6 +32,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
32
// biome-ignore lint/security/noDangerouslySetInnerHtml: inline scripts
33
dangerouslySetInnerHTML={{ __html: script }}
34
/>
35
+ <Scripts />
36
</head>
37
<body className="group/body overscroll-none antialiased [--footer-height:calc(var(--spacing)*14)] [--header-height:calc(var(--spacing)*14)] xl:[--footer-height:calc(var(--spacing)*24)] theme-default">
38
{children}
@@ -41,7 +42,6 @@ export function Layout({ children }: { children: React.ReactNode }) {
41
42
dangerouslySetInnerHTML={{ __html: template }}
43
44
<ScrollRestoration />
- <Scripts />
45
</body>
46
</html>
47
);
0 commit comments