From d10f87e899f8197801eb52c45668ffe1e4f40035 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Wed, 23 Apr 2025 03:20:22 -0600 Subject: [PATCH] chore: Temporarily simplify image rendering in [tag].astro for debugging --- src/pages/tag/[tag].astro | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro index ba7756b..3aebbc0 100644 --- a/src/pages/tag/[tag].astro +++ b/src/pages/tag/[tag].astro @@ -44,23 +44,14 @@ const sortedPosts = posts.sort((a, b) => {
{sortedPosts.map((post) => (
- {post.data.heroImage ? ( - - ) : ( - - )} + {/* Temporarily removed conditional image rendering for debugging */} +