From 6eb10b4d9412f1e11fa10638e12308f189a5bf78 Mon Sep 17 00:00:00 2001 From: timur Date: Mon, 18 Dec 2023 14:04:41 +0100 Subject: [PATCH 1/2] Redirect to USD instead --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } From 86c88b92c194e88d07d90c58f43e7f8369cf21a5 Mon Sep 17 00:00:00 2001 From: timur Date: Mon, 18 Dec 2023 14:35:34 +0100 Subject: [PATCH 2/2] Use USD as default --- src/app/[channel]/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }]; } };