From 9366f2f6dda582c0ef779851c822d49b1ad968ce Mon Sep 17 00:00:00 2001 From: Brittany Ellich Date: Fri, 17 Apr 2026 05:07:26 +0000 Subject: [PATCH] Fix app card with temp name --- src/components/AppCard.astro | 5 +++-- 1 file(s) changed, 3 insertion(s)(+), 2 deletion(s)(-) diff --git a/src/components/AppCard.astro b/src/components/AppCard.astro --- a/src/components/AppCard.astro +++ b/src/components/AppCard.astro @@ -23,13 +23,14 @@ .slice(0, 2) .map(w => w[0]?.toUpperCase() ?? '') .join(''); +const logoSrc = logo?.startsWith('/') ? `${import.meta.env.BASE_URL}${logo}` : logo; ---
- {logo ? ( - + {logoSrc ? ( + ) : ( )} -- tangled.sh