From c9181c5710010dbfdac283fd6ec7b6480c8f7c2a Mon Sep 17 00:00:00 2001 From: "Daniel H. Alcojor" Date: Fri, 19 Jul 2024 22:11:32 +0200 Subject: [PATCH] ci: Fix astro check --- src/components/Card.astro | 7 +++---- src/components/Icon.astro | 7 +++---- src/layouts/Layout.astro | 4 ++-- src/pages/index.astro | 9 +++++---- src/types.ts | 2 ++ 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index 67ac2d5..c02a9a7 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -5,13 +5,12 @@ interface Props { className?: string; title: string; body: string; - href: string; tags: string[]; repoUrl: string; demoUrl: string; } -const { image, className, title, body, href, tags, repoUrl, demoUrl } = Astro.props; +const { image, className, title, body, tags, repoUrl, demoUrl } = Astro.props; ---
  • @@ -30,13 +29,13 @@ const { image, className, title, body, href, tags, repoUrl, demoUrl } = Astro.pr