diff --git a/components/HotelReservation/SelectRate/SelectedRoomPanel/index.tsx b/components/HotelReservation/SelectRate/SelectedRoomPanel/index.tsx index b01a49435..553803438 100644 --- a/components/HotelReservation/SelectRate/SelectedRoomPanel/index.tsx +++ b/components/HotelReservation/SelectRate/SelectedRoomPanel/index.tsx @@ -9,13 +9,15 @@ import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import styles from "./selectedRoomPanel.module.css" -import type { RoomParam } from "@/types/components/hotelReservation/selectRate/section" -import type { Rate } from "@/types/components/hotelReservation/selectRate/selectRate" +import type { + Rate, + Room, +} from "@/types/components/hotelReservation/selectRate/selectRate" import type { RoomData } from "@/types/hotel" interface SelectedRoomPanelProps { roomIndex: number - room: RoomParam + room: Room selectedRate: Rate | null roomCategories: RoomData[] handleModify: () => void @@ -35,6 +37,8 @@ export default function SelectedRoomPanel({ ) )?.images + console.log(room) + return (