From 69b99056b2e0284ee1c46a3ad514d68504a7aafd Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Wed, 4 Dec 2024 16:08:52 -0800 Subject: [PATCH] Redirect to chat (#3341) * k * nit --- web/src/app/not-found.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 web/src/app/not-found.tsx diff --git a/web/src/app/not-found.tsx b/web/src/app/not-found.tsx new file mode 100644 index 000000000..6866db7cb --- /dev/null +++ b/web/src/app/not-found.tsx @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default function NotFound() { + redirect("/chat"); +}