From ae948029f47b2cbd2656f2078ce2de9ba44384ff Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Thu, 18 May 2023 16:52:34 +0200 Subject: [PATCH] fix: update API of toolbox component --- src/components/Toolbox.astro | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/components/Toolbox.astro b/src/components/Toolbox.astro index b87643a..ee8d5ee 100644 --- a/src/components/Toolbox.astro +++ b/src/components/Toolbox.astro @@ -1,5 +1,5 @@ --- -import { Image } from '@astrojs/image/components'; +import { Img } from 'astro-imagetools/components'; import { Link } from '.'; import type { ToolsProps } from '../data/tools'; @@ -16,14 +16,7 @@ const { tools } = Astro.props; tools.map(({ name, url, image }) => (
  • - {name} + {name}
  • ))