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 9222766 commit f1b0913Copy full SHA for f1b0913
app/hypercerts/[hypercertId]/page.tsx
@@ -51,7 +51,7 @@ export async function generateMetadata(
51
export default async function HypercertPage({ params, searchParams }: Props) {
52
const { hypercertId } = params;
53
54
- const [hypercert] = await Promise.all([getHypercert(hypercertId)]);
+ const hypercert = await getHypercert(hypercertId);
55
const isCreatorFeedEnabledOnChain = await creatorFeedFlag();
56
const isEvaluationsEnabledOnChain = await evaluationsFlag();
57
const isMarketplaceListingsEnabledOnChain = await marketplaceListingsFlag();
0 commit comments