From c24e9de8f214a76a70ece0716651ebab0b18ff90 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Sun, 21 Jul 2024 10:41:19 -0500 Subject: [PATCH] /chat page redirects back to home --- apps/web/app/(dash)/chat/route.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/web/app/(dash)/chat/route.ts diff --git a/apps/web/app/(dash)/chat/route.ts b/apps/web/app/(dash)/chat/route.ts new file mode 100644 index 00000000..6599590c --- /dev/null +++ b/apps/web/app/(dash)/chat/route.ts @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default async function GET() { + return redirect("/home"); +}