feat: SW-1588 Fixed rebase issues

This commit is contained in:
Hrishikesh Vaipurkar
2025-02-25 14:10:32 +01:00
parent 7fe217826d
commit 6e9123aca9
3 changed files with 2 additions and 12 deletions

View File

@@ -33,13 +33,8 @@ export default async function SelectRatePage({
if (!searchDetails?.hotel) {
return notFound()
}
const {
hotel,
adultsInRoom,
childrenInRoom,
selectHotelParams,
bookingCode,
} = searchDetails
const { hotel, adultsInRoom, childrenInRoom, selectHotelParams } =
searchDetails
const { fromDate, toDate } = getValidDates(
selectHotelParams.fromDate,

View File

@@ -70,7 +70,6 @@ import type { HotelDataWithUrl } from "@/types/hotel"
import type {
HotelsAvailabilityInputSchema,
HotelsByHotelIdsAvailabilityInputSchema,
RoomsAvailabilityInputSchema,
} from "@/types/trpc/routers/hotel/availability"
import type { HotelInput } from "@/types/trpc/routers/hotel/hotel"
import type { CityLocation } from "@/types/trpc/routers/hotel/locations"

View File

@@ -3,7 +3,6 @@ import type { z } from "zod"
import type {
getHotelsByHotelIdsAvailabilityInputSchema,
hotelsAvailabilityInputSchema,
roomsAvailabilityInputSchema,
} from "@/server/routers/hotels/input"
import type { hotelsAvailabilitySchema } from "@/server/routers/hotels/output"
import type { productTypeSchema } from "@/server/routers/hotels/schemas/availability/productType"
@@ -16,9 +15,6 @@ export type HotelsAvailabilityInputSchema = z.output<
export type HotelsByHotelIdsAvailabilityInputSchema = z.output<
typeof getHotelsByHotelIdsAvailabilityInputSchema
>
export type RoomsAvailabilityInputSchema = z.output<
typeof roomsAvailabilityInputSchema
>
export type ProductType = z.output<typeof productTypeSchema>
export type ProductTypePrices = z.output<typeof productTypePriceSchema>