From 625767a68b580ba5d8025b7f7c7430baebf88fa6 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Wed, 15 Jan 2025 09:43:42 -0600 Subject: [PATCH] Fix lint warning --- src/app/p/[photoId]/image/route.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/p/[photoId]/image/route.tsx b/src/app/p/[photoId]/image/route.tsx index bc821e91..73bf45ac 100644 --- a/src/app/p/[photoId]/image/route.tsx +++ b/src/app/p/[photoId]/image/route.tsx @@ -4,7 +4,10 @@ import PhotoImageResponse from '@/image-response/PhotoImageResponse'; import { getIBMPlexMonoMedium } from '@/site/font'; import { ImageResponse } from 'next/og'; import { getImageResponseCacheControlHeaders } from '@/image-response/cache'; -import { IS_PRODUCTION, STATICALLY_OPTIMIZED_PHOTO_OG_IMAGES } from '@/site/config'; +import { + IS_PRODUCTION, + STATICALLY_OPTIMIZED_PHOTO_OG_IMAGES, +} from '@/site/config'; import { getPhotoIds } from '@/photo/db/query'; import { GENERATE_STATIC_PARAMS_LIMIT } from '@/photo/db'; import { isNextImageReadyBasedOnPhotos } from '@/photo';