diff options
Diffstat (limited to 'packages/docs/app/routes/not-found.tsx')
| -rw-r--r-- | packages/docs/app/routes/not-found.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/docs/app/routes/not-found.tsx b/packages/docs/app/routes/not-found.tsx index 1d9e041..7be6081 100644 --- a/packages/docs/app/routes/not-found.tsx +++ b/packages/docs/app/routes/not-found.tsx @@ -1,5 +1,5 @@ export function loader() { - throw new Response('Not Found', { status: 404 }); + throw new Response("Not Found", { status: 404 }); } export default function NotFound() { |