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

@@ -8,6 +8,6 @@ export type ShortcutsProps = {
text?: string
}[]
title: string | ReactNode
subtitle?: string
subtitle?: string | null
openInNewTab?: boolean
}