We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d738a90 commit f548faeCopy full SHA for f548fae
apps/dashboard/src/app/(dashboard)/explore/[category]/page.tsx
@@ -11,7 +11,7 @@ import {
11
ContractCardSkeleton,
12
} from "components/explore/contract-card";
13
import { DeployUpsellCard } from "components/explore/upsells/deploy-your-own";
14
-import { ALL_CATEGORIES, getCategory } from "data/explore";
+import { getCategory } from "data/explore";
15
import type { Metadata } from "next";
16
import Link from "next/link";
17
import { notFound } from "next/navigation";
@@ -131,9 +131,3 @@ export default async function ExploreCategoryPage(
131
</div>
132
);
133
}
134
-
135
-export async function generateStaticParams() {
136
- return ALL_CATEGORIES.map((category) => ({
137
- params: { category },
138
- }));
139
-}
0 commit comments