From 36d756e469bd91925ddd4b6130b5f5226ff23899 Mon Sep 17 00:00:00 2001 From: Benny Joo Date: Thu, 23 Jan 2025 15:44:29 +0000 Subject: [PATCH] fix: flickering in `/bookings/[status]` page (#18836) --- apps/web/app/(use-page-wrapper)/bookings/[status]/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/web/app/(use-page-wrapper)/bookings/[status]/page.tsx b/apps/web/app/(use-page-wrapper)/bookings/[status]/page.tsx index 833f3685c2..940e7c09b2 100644 --- a/apps/web/app/(use-page-wrapper)/bookings/[status]/page.tsx +++ b/apps/web/app/(use-page-wrapper)/bookings/[status]/page.tsx @@ -16,10 +16,6 @@ export const generateMetadata = async () => (t) => t("bookings_description") ); -export const generateStaticParams = async () => { - return validStatuses.map((status) => ({ status })); -}; - const Page = ({ params }: PageProps) => { const parsed = querySchema.safeParse(params); if (!parsed.success) {