fix: properties inside hotel_navigation could be null or undefined

Approved-by: Michael Zetterberg
This commit is contained in:
Erik Tiekstra
2025-04-08 12:33:06 +00:00
parent c069b7cd9d
commit 3f510e9aae
2 changed files with 17 additions and 17 deletions
@@ -9,14 +9,14 @@ export enum HotelHashValues {
}
type Tabs = {
overview?: string
rooms?: string
restaurant_bar?: string
conferences_meetings?: string
health_wellness?: string
activities?: string
offers?: string
faq?: string
overview?: string | null
rooms?: string | null
restaurant_bar?: string | null
conferences_meetings?: string | null
health_wellness?: string | null
activities?: string | null
offers?: string | null
faq?: string | null
}
export type TabNavigationProps = {