refactor: zod validation and pr comments

This commit is contained in:
Christel Westerberg
2024-04-29 14:00:24 +02:00
parent 9f0b044daa
commit d9f1470eb7
31 changed files with 222 additions and 207 deletions

View File

@@ -15,7 +15,7 @@ export default function Card({
openInNewTab = false,
}: CardProps) {
return (
<div className={styles.linkCard}>
<article className={styles.linkCard}>
{title ? (
<Title level="h3" weight="semiBold">
{title}
@@ -33,6 +33,6 @@ export default function Card({
</Link>
</Button>
) : null}
</div>
</article>
)
}