/chat page redirects back to home

This commit is contained in:
Dhravya Shah 2024-07-21 10:41:19 -05:00
parent 67901f2532
commit c24e9de8f2

View file

@ -0,0 +1,5 @@
import { redirect } from "next/navigation";
export default async function GET() {
return redirect("/home");
}