From 84dc219a1421395b3b7584d7176af8023ba93b1a Mon Sep 17 00:00:00 2001 From: Citali Date: Sat, 31 Jan 2026 01:33:07 +0100 Subject: [PATCH] Unify portfolio and animal studies galleries --- src/components/gallery/JustifiedGallery.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/gallery/JustifiedGallery.tsx b/src/components/gallery/JustifiedGallery.tsx index 1af5520..2364d10 100644 --- a/src/components/gallery/JustifiedGallery.tsx +++ b/src/components/gallery/JustifiedGallery.tsx @@ -239,7 +239,7 @@ function GalleryTile({ const { item, w, h } = tile; const href = `${hrefBase}/${item.id}?from=${encodeURIComponent(hrefFrom)}`; - const src = `/api/image/thumbnail/${item.fileKey}.webp`; + const src = `/api/image/gallery/${item.fileKey}.webp`; const style: CSSProperties & { "--dom"?: string } = {}; const dom = normalizeColor(item.dominantHex);