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();