diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/TotalPrice.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/TotalPrice.tsx index 273f006ca..b69df4c48 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/TotalPrice.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/TotalPrice.tsx @@ -16,7 +16,7 @@ export default function TotalPrice() { ) const totalCheques = rooms.reduce((total, room) => total + room.cheques, 0) - const totalPoints = rooms.reduce((total, room) => total + room.roomPoints, 0) + const totalPoints = rooms.reduce((total, room) => total + room.totalPoints, 0) let totalPrice = rooms.reduce((total, room) => total + room.totalPrice, 0) if (rooms.some((room) => room.vouchers)) {