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; ---