From d0d55c1db467937c416e8b324c55954b4a92c184 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 19 May 2023 14:42:20 +0200 Subject: [PATCH] fix: change placeholder type for Toolbox --- src/components/Toolbox.astro | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/Toolbox.astro b/src/components/Toolbox.astro index ee8d5ee..d0cd6f9 100644 --- a/src/components/Toolbox.astro +++ b/src/components/Toolbox.astro @@ -16,7 +16,15 @@ const { tools } = Astro.props; tools.map(({ name, url, image }) => (
  • - {name} + {name}
  • ))