fix: oopsies, not default function

This commit is contained in:
Dhravya Shah 2024-07-21 10:43:00 -05:00
parent c24e9de8f2
commit 2dca0d0a79

View file

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