From b20dd0285451bad8472d6b0d115e65624641a392 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Wed, 5 Apr 2023 20:06:21 +0800 Subject: [PATCH] rename archive page component --- client/src/app/archive/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/archive/[id]/page.tsx b/client/src/app/archive/[id]/page.tsx index ea5556a..cce348e 100644 --- a/client/src/app/archive/[id]/page.tsx +++ b/client/src/app/archive/[id]/page.tsx @@ -35,7 +35,7 @@ export async function generateMetadata({ params }: { params: { id: number } }) { }; } -export default async function Game({ params }: { params: { id: number } }) { +export default async function Archive({ params }: { params: { id: number } }) { const game = (await getArchivedGame({ id: params.id })) as Game | undefined; if (!game) { notFound();