From caeccd14615907d495c592bd67d254097f8f3228 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Mon, 22 Jan 2024 08:41:45 -0600 Subject: [PATCH] Temporarily stop pre-fetching og images --- src/app/p/[photoId]/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/p/[photoId]/layout.tsx b/src/app/p/[photoId]/layout.tsx index 1dce6b7f..793a6180 100644 --- a/src/app/p/[photoId]/layout.tsx +++ b/src/app/p/[photoId]/layout.tsx @@ -70,7 +70,7 @@ export default async function PhotoPage({ const isPhotoFirst = photos.findIndex(p => p.id === photoId) === 0; // Warm OG image without waiting on response - fetch(absolutePathForPhotoImage(photo)); + // fetch(absolutePathForPhotoImage(photo)); return <> {children}