Merged in fix/SW-3208-webviews-change-dates-on-my- (pull request #2638)

fix(SW-3208): Fixed webview for change date in MyStay

* fix(SW-3208): Fixed webview for change date in MyStay


Approved-by: Linus Flood
This commit is contained in:
Hrishikesh Vaipurkar
2025-08-13 12:37:04 +00:00
parent ddaa2a0e20
commit 706f2d8dfe
5 changed files with 12 additions and 9 deletions

View File

@@ -24,6 +24,7 @@ import type { MyStayStore } from "@/types/contexts/my-stay"
interface MyStayProviderProps {
bookingConfirmation: BookingConfirmation
breakfastPackages: Packages | null
isLoggedIn?: boolean
lang: Lang
linkedReservationsPromise: Promise<BookingConfirmationSchema[]>
refId: string
@@ -40,6 +41,7 @@ export default function MyStayProvider({
refId,
roomCategories,
savedCreditCards,
isLoggedIn,
}: React.PropsWithChildren<MyStayProviderProps>) {
const storeRef = useRef<MyStayStore>(undefined)
const intl = useIntl()
@@ -101,6 +103,7 @@ export default function MyStayProvider({
roomCategories,
rooms,
savedCreditCards,
isLoggedIn,
})
}