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 ? ( + ) : ( )}