From a235a5a0403c535ff4e130d2e546dcfb9b451562 Mon Sep 17 00:00:00 2001 From: Marc Wolf Date: Wed, 15 Mar 2023 19:51:16 +0100 Subject: [PATCH] Use non-breaking space In some cases during development or after building, "{' '}" appears. It's better to use the HTML entity   instead. --- src/components/widgets/Hero.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro index 122ebb8..f762d8d 100644 --- a/src/components/widgets/Hero.astro +++ b/src/components/widgets/Hero.astro @@ -52,7 +52,7 @@ const { {callToAction?.icon && ( <> - {' '} +   )} {callToAction?.text} @@ -70,7 +70,7 @@ const { {callToAction2?.icon && ( <> - {' '} +   )} {callToAction2.text}