diff --git a/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx b/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx index 530af45da..a9a9743b2 100644 --- a/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx +++ b/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx @@ -57,9 +57,11 @@ export default function RoomCard({ ?.generalTerms } - const petRoomPackage = packages.find( - (pkg) => pkg.code === RoomPackageCodeEnum.PET_ROOM - ) + const petRoomPackage = + packages.find((pkg) => pkg.code === RoomPackageCodeEnum.PET_ROOM) && + selectedPackages.includes(RoomPackageCodeEnum.PET_ROOM) + ? packages.find((pkg) => pkg.code === RoomPackageCodeEnum.PET_ROOM) + : undefined const selectedRoom = roomCategories.find( (room) => room.name === roomConfiguration.roomType