From 4ba2f1cd0c22cebdbbdc98dcddef618de2d6f0eb Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sat, 13 Jan 2024 13:21:29 -0600 Subject: [PATCH] Remove 'force-static' from /grid --- src/app/grid/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/grid/page.tsx b/src/app/grid/page.tsx index c2c2f3b2..ac2e7640 100644 --- a/src/app/grid/page.tsx +++ b/src/app/grid/page.tsx @@ -13,8 +13,6 @@ import { import PhotoGridSidebar from '@/photo/PhotoGridSidebar'; import { getPhotoSidebarDataCached } from '@/photo/data'; -export const dynamic = 'force-static'; - export async function generateMetadata(): Promise { const photos = await getPhotosCached({ limit: MAX_PHOTOS_TO_SHOW_OG }); return generateOgImageMetaForPhotos(photos);