From 886be166ef9acc4910fe7e0eec371885cc9cfb71 Mon Sep 17 00:00:00 2001 From: Arvid Norlin Date: Mon, 9 Dec 2024 10:37:30 +0100 Subject: [PATCH] fix: use room.description instead of mainBed.description --- server/routers/hotels/query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index e91905c6b..4296ed8c0 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -614,7 +614,7 @@ export const hotelQueryRouter = router({ if (matchingRoom) { return { - description: matchingRoom.mainBed.description, + description: matchingRoom.description, size: matchingRoom.mainBed.widthRange, value: matchingRoom.code, }