diff --git a/www/app/page.tsx b/www/app/page.tsx index aff9fc3a..bc293bda 100644 --- a/www/app/page.tsx +++ b/www/app/page.tsx @@ -1,4 +1,6 @@ +"use client" import { redirect } from "next/navigation"; -export default async function Index() { + +export default function Index() { redirect("/transcripts/new"); }