Merged in feat/book-530-selectrate-tracking (pull request #3128)
feat(BOOK-530): fixed noAvailableRooms tracking on select rate page * feat(BOOK-530): fixed noAvailableRooms tracking on select rate page Approved-by: Bianca Widstam
This commit is contained in:
@@ -79,11 +79,11 @@ export function NoAvailabilityTracking({
|
||||
}
|
||||
|
||||
type TrackNoAvailabilityParams = {
|
||||
specialRoomType: string
|
||||
specialRoomType?: string
|
||||
fromDate: string
|
||||
toDate: string
|
||||
hotelId: string
|
||||
noOfRooms: number
|
||||
hotelId?: string
|
||||
noOfRooms?: number
|
||||
searchType?: string
|
||||
bookingCode?: string
|
||||
searchTerm: string
|
||||
@@ -93,7 +93,6 @@ type TrackNoAvailabilityParams = {
|
||||
pageType: string
|
||||
siteSections: string
|
||||
lang: Lang
|
||||
sessionId: string | null
|
||||
domain?: string
|
||||
}
|
||||
|
||||
@@ -112,7 +111,6 @@ export function trackNoAvailability({
|
||||
pageName,
|
||||
pageType,
|
||||
siteSections,
|
||||
sessionId,
|
||||
domain,
|
||||
}: TrackNoAvailabilityParams) {
|
||||
const arrivalDate = new Date(fromDate)
|
||||
@@ -142,8 +140,6 @@ export function trackNoAvailability({
|
||||
pageName,
|
||||
pageType,
|
||||
siteSections,
|
||||
sessionId,
|
||||
siteVersion: "new-web",
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user