diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
index b80612c1c..9e7a30f46 100644
--- a/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
+++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
@@ -359,6 +359,7 @@ export default function SummaryUI({
roomType: r.roomType,
bedType: r.bedType,
breakfast: r.breakfast,
+ roomFeatures: r.roomFeatures,
}))}
totalPrice={totalPrice}
vat={vat}
diff --git a/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx b/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx
index 0a14d58cc..babb747a7 100644
--- a/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx
+++ b/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx
@@ -17,6 +17,7 @@ import type { BreakfastPackage } from "@/types/components/hotelReservation/enter
import type { RoomPrice } from "@/types/components/hotelReservation/enterDetails/details"
import type { Price } from "@/types/components/hotelReservation/price"
import type { Child } from "@/types/components/hotelReservation/selectRate/selectRate"
+import type { Packages } from "@/types/requests/packages"
function Row({
label,
@@ -70,6 +71,7 @@ interface PriceDetailsTableProps {
roomPrice: RoomPrice
bedType?: BedTypeSchema
breakfast?: BreakfastPackage | false
+ roomFeatures?: Packages | null
}[]
totalPrice: Price
vat: number
@@ -117,6 +119,19 @@ export default function PriceDetailsTable({
room.roomPrice.perNight.local.currency
)}
/>
+ {room.roomFeatures
+ ? room.roomFeatures.map((feature) => (
+
+ ))
+ : null}
{room.bedType ? (
|