rename archive page component

This commit is contained in:
Nathaniel Tampus
2023-04-05 20:06:21 +08:00
parent 06b772be79
commit b20dd02854

View File

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