diff options
| author | 2026-03-26 09:01:31 +0800 | |
|---|---|---|
| committer | 2026-03-26 09:01:31 +0800 | |
| commit | 3a31d3004b2814cd8a26d49a0f8a96636411dcd2 (patch) | |
| tree | e86c8d46e73262c67c1755aaf4202cbcd1f8f844 /packages/docs/app/routes/not-found.tsx | |
| parent | 1aeb0d1f5cf6c5c2492e749e3c25c3649b591c59 (diff) | |
| parent | 7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae (diff) | |
| download | DropOut-3a31d3004b2814cd8a26d49a0f8a96636411dcd2.tar.gz DropOut-3a31d3004b2814cd8a26d49a0f8a96636411dcd2.zip | |
Merge branch 'main' into feature/multi-instances
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() { |