fix: use room.description instead of mainBed.description

This commit is contained in:
Arvid Norlin
2024-12-09 10:37:30 +01:00
parent ea263bb189
commit 886be166ef

View File

@@ -614,7 +614,7 @@ export const hotelQueryRouter = router({
if (matchingRoom) { if (matchingRoom) {
return { return {
description: matchingRoom.mainBed.description, description: matchingRoom.description,
size: matchingRoom.mainBed.widthRange, size: matchingRoom.mainBed.widthRange,
value: matchingRoom.code, value: matchingRoom.code,
} }