diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index 2c42b1887..71b7d4de0 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -35,7 +35,6 @@ export const hotelQueryRouter = router({ // - but if/when we do we can extend the endpoint (and schema) to add necessary requirements. // - Example "included" data available in our tempHotelData file. const { included, ...apiJsonWithoutIncluded } = tempHotelData - console.log("hotel apiJson: ", apiJsonWithoutIncluded) const validatedHotelData = getHotelDataSchema.safeParse( apiJsonWithoutIncluded ) @@ -46,7 +45,6 @@ export const hotelQueryRouter = router({ throw badRequestError() } - console.log("validatedHotelData.data: ", validatedHotelData) return validatedHotelData.data }), })