diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx
index 22056bf57..6ac2ff994 100644
--- a/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx
+++ b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx
@@ -69,8 +69,8 @@ export default function SelectedRoom() {
{
roomType: room.roomType,
rateDescription: room.cancellationText,
- rate: (str) => {
- return {str}
+ rate: ([str]) => {
+ return str ? {str} : null
},
}
)}