Merged in feat/check-session-fix-2 (pull request #1154)

fix: is user logged in fix

* fix: is user logged in fix
This commit is contained in:
Linus Flood
2025-01-08 15:38:36 +00:00
parent a8763ca80c
commit fa20f128ef
4 changed files with 10 additions and 4 deletions

View File

@@ -12,6 +12,7 @@ export interface RoomSelectionProps {
setRateCode: React.Dispatch<React.SetStateAction<RateCode | undefined>>
rateSummary: Rate | null
hotelType: string | undefined
isUserLoggedIn: boolean
}
export interface SelectRateProps {
@@ -19,4 +20,5 @@ export interface SelectRateProps {
roomCategories: RoomData[]
availablePackages: RoomPackageData
hotelType: string | undefined
isUserLoggedIn: boolean
}