fix: change optional to nullable in validation

This commit is contained in:
Christel Westerberg
2024-05-13 16:41:50 +02:00
parent 43f10abdbc
commit ed052dbfa4
6 changed files with 26 additions and 24 deletions

View File

@@ -3,7 +3,7 @@ export type CardProps = {
href: string
title: string
}
title?: string
subtitle?: string
title?: string | null
subtitle?: string | null
openInNewTab?: boolean
}