Skip to content

Commit 70512c6

Browse files
committed
fix: make build pass
1 parent f70248c commit 70512c6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/app/show/[id]/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ type Props = {
66
};
77

88
export async function generateStaticParams() {
9-
return "DevEngageAnalytics";
9+
const ids = ["DevEngageAnalytics"];
10+
11+
return ids.map((id) => ({
12+
id,
13+
}));
1014
}
1115

1216
export async function generateMetadata({ params }: Props): Promise<Metadata> {

0 commit comments

Comments
 (0)