Skip to content

Commit f1b0913

Browse files
committed
chore(cleanupt): remove promise all await
cleanup artifact from data fetching refactor in hypercerts view page
1 parent 9222766 commit f1b0913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/hypercerts/[hypercertId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function generateMetadata(
5151
export default async function HypercertPage({ params, searchParams }: Props) {
5252
const { hypercertId } = params;
5353

54-
const [hypercert] = await Promise.all([getHypercert(hypercertId)]);
54+
const hypercert = await getHypercert(hypercertId);
5555
const isCreatorFeedEnabledOnChain = await creatorFeedFlag();
5656
const isEvaluationsEnabledOnChain = await evaluationsFlag();
5757
const isMarketplaceListingsEnabledOnChain = await marketplaceListingsFlag();

0 commit comments

Comments
 (0)