We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5efda43 commit 1362a39Copy full SHA for 1362a39
exercises/01.start/01.problem.vite-plugin/app/root.tsx
@@ -3,6 +3,7 @@ import {
3
Links,
4
Meta,
5
Outlet,
6
+ // 💣 remove this Scripts import
7
Scripts,
8
ScrollRestoration,
9
} from 'react-router'
@@ -35,6 +36,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
35
36
<body>
37
{children}
38
<ScrollRestoration />
39
+ {/* 💣 remove this Scripts element */}
40
<Scripts />
41
</body>
42
</html>
0 commit comments