From 1e8113ebf7860f0d7b6cbb14c127146a4a6b58bf Mon Sep 17 00:00:00 2001 From: andreas Date: Fri, 22 Sep 2023 22:31:36 +0200 Subject: [PATCH] Fixed error: Failed to fetch RSC payload. Falling back to browser navigation --- www/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"); }