diff --git a/pages/collections.js b/pages/collections.js index 325a9df..640dd09 100644 --- a/pages/collections.js +++ b/pages/collections.js @@ -249,14 +249,10 @@ export default function Collections() { return new Date(dateString).toLocaleDateString(); }; - // Collection thumbnail component + // Collection thumbnail component - Updated design with card images const CollectionThumbnail = ({ collection }) => { const { thumbnails = [], image } = collection; - console.log('🔍 CollectionThumbnail - collection:', collection.name); - console.log('🔍 CollectionThumbnail - thumbnails:', thumbnails); - console.log('🔍 CollectionThumbnail - image:', image); - // If there's a custom image, show it if (image) { return ( @@ -272,7 +268,6 @@ export default function Collections() { // If no cards, show crying emoji if (!thumbnails || thumbnails.length === 0) { - console.log('🔍 CollectionThumbnail - showing crying emoji (no thumbnails)'); return (