diff --git a/pages/collections.js b/pages/collections.js index d68e08c..325a9df 100644 --- a/pages/collections.js +++ b/pages/collections.js @@ -253,6 +253,10 @@ export default function Collections() { 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 ( @@ -268,6 +272,7 @@ export default function Collections() { // If no cards, show crying emoji if (!thumbnails || thumbnails.length === 0) { + console.log('🔍 CollectionThumbnail - showing crying emoji (no thumbnails)'); return (