From 84011ed485e334abe29f495713b0806563aa6e6f Mon Sep 17 00:00:00 2001 From: Robert van Hoesel Date: Wed, 14 Feb 2024 18:08:28 +0100 Subject: [PATCH] Fix Tooltip --- src/components/layout/HeaderMeta.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/layout/HeaderMeta.astro b/src/components/layout/HeaderMeta.astro index e602f34..3599c57 100644 --- a/src/components/layout/HeaderMeta.astro +++ b/src/components/layout/HeaderMeta.astro @@ -25,8 +25,8 @@ interface Props { > { Astro.props.items?.map(({ label, icon, tooltip, href }) => ( -
- + +
{icon && "src" in icon && } {icon && icon instanceof Promise && } @@ -42,8 +42,8 @@ interface Props { label )} - -
+
+ )) }