From 9366f2f6dda582c0ef779851c822d49b1ad968ce Mon Sep 17 00:00:00 2001 From: Brittany Ellich Date: Thu, 16 Apr 2026 22:07:26 -0700 Subject: [PATCH] Fix app card with temp name --- src/components/AppCard.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/AppCard.astro b/src/components/AppCard.astro index 4ec0e22..517fffd 100644 --- a/src/components/AppCard.astro +++ b/src/components/AppCard.astro @@ -23,13 +23,14 @@ const initials = name .slice(0, 2) .map(w => w[0]?.toUpperCase() ?? '') .join(''); +const logoSrc = logo?.startsWith('/') ? `${import.meta.env.BASE_URL}${logo}` : logo; ---
- {logo ? ( - + {logoSrc ? ( + ) : ( )} -- 2.51.2