diff --git a/src/app/[channel]/layout.tsx b/src/app/[channel]/layout.tsx index ab40ec01b..740db3745 100644 --- a/src/app/[channel]/layout.tsx +++ b/src/app/[channel]/layout.tsx @@ -20,7 +20,7 @@ export const generateStaticParams = async () => { .map((channel) => ({ channel: channel.slug })) ?? [] ); } else { - return [{ channel: "default-channel" }]; + return [{ channel: "usd" }]; } }; diff --git a/src/app/page.tsx b/src/app/page.tsx index 722f46db6..e985f98d4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,5 @@ import { redirect } from "next/navigation"; export default function EmptyPage() { - redirect("/default-channel"); + redirect("/usd"); }