From 988feb80e72b750885779605258888e9ef329d84 Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Mon, 30 Jan 2023 23:56:31 +0100 Subject: [PATCH] fix: bad target on Card --- src/components/Card.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index d1f6f8f..d2b9b18 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,14 +3,14 @@ export interface Props { title: string; body: string; href: string; - target: string + target: string; } const { href, target, title, body } = Astro.props; ---