From 96b2be6ea1f5b2d8ba09f3af00c36e6de3334092 Mon Sep 17 00:00:00 2001 From: Chuma McPhoy Date: Thu, 11 Jul 2024 14:39:01 +0200 Subject: [PATCH] fix: remove undefined type from badgeTextTransKey prop --- types/components/hotelPage/roomCard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/components/hotelPage/roomCard.ts b/types/components/hotelPage/roomCard.ts index 00238fb9a..4a555c621 100644 --- a/types/components/hotelPage/roomCard.ts +++ b/types/components/hotelPage/roomCard.ts @@ -5,5 +5,5 @@ export interface RoomCardProps { images: RoomData["attributes"]["content"]["images"] title: string subtitle: string - badgeTextTransKey?: string | null + badgeTextTransKey: string | null }