diff --git a/src/pages/cats/[...catId].astro b/src/pages/cats/[...catId].astro index f4199f7..d42fbf2 100644 --- a/src/pages/cats/[...catId].astro +++ b/src/pages/cats/[...catId].astro @@ -35,8 +35,13 @@ const title = `${cat.data.owner.name}'s ${cat.data.name}`;

- {cat.data.description} + { + cat.data.description.length === 0 + ? 'No description provided.' + : cat.data.description + }

+ {cat.data.passedAway &&

🕯️ Rest In Peace 🕯️

}