Fixed error: Failed to fetch RSC payload. Falling back to browser navigation

This commit is contained in:
andreas
2023-09-22 22:31:36 +02:00
parent 4c8af4dacc
commit 1e8113ebf7

View File

@@ -1,4 +1,6 @@
"use client"
import { redirect } from "next/navigation";
export default async function Index() {
export default function Index() {
redirect("/transcripts/new");
}