From 60d4f802f52f58af074e4a2a72bbde995437afc6 Mon Sep 17 00:00:00 2001 From: DerTyp7 Date: Thu, 9 Oct 2025 20:25:45 +0200 Subject: [PATCH] Remove console.logs --- src/components/Gallery.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Gallery.tsx b/src/components/Gallery.tsx index 3d5bb4a..fb4ba69 100644 --- a/src/components/Gallery.tsx +++ b/src/components/Gallery.tsx @@ -32,7 +32,6 @@ export default function Gallery({ initialImages }: GalleryProps) { let index = 0; for (const image of imageStack) { - console.log('image', image.id); usedColumnsInRow += image.aspect_ratio > HORIZONTAL_ASPECT_RATIO ? 2 : 1; usedRowsInColumn += image.aspect_ratio < VERTICAL_ASPECT_RATIO ? 2 : 1; @@ -59,7 +58,7 @@ export default function Gallery({ initialImages }: GalleryProps) { } index++; } - console.log('new images', imageStack); + setImages(imageStack); } };