Merged in fix/hotelData-is-null (pull request #1209)
fix: filter hotels that has valid hotelData * fix: filter hotels that has valid hotelData Approved-by: Pontus Dreij
This commit is contained in:
@@ -71,10 +71,9 @@ export default async function SelectHotel({
|
|||||||
|
|
||||||
const isCityWithCountry = (city: any): city is { country: string } =>
|
const isCityWithCountry = (city: any): city is { country: string } =>
|
||||||
"country" in city
|
"country" in city
|
||||||
|
|
||||||
const validHotels =
|
const validHotels =
|
||||||
hotels?.filter((hotel): hotel is HotelData => hotel !== null) || []
|
hotels?.filter((hotel): hotel is HotelData => hotel?.hotelData !== null) ||
|
||||||
|
[]
|
||||||
const filterList = getFiltersFromHotels(validHotels)
|
const filterList = getFiltersFromHotels(validHotels)
|
||||||
|
|
||||||
const searchParams = convertObjToSearchParams(selectHotelParams)
|
const searchParams = convertObjToSearchParams(selectHotelParams)
|
||||||
|
|||||||
Reference in New Issue
Block a user