diff --git a/app/api/listings/route.ts b/app/api/listings/route.ts index 4a41c4a..9837ebe 100644 --- a/app/api/listings/route.ts +++ b/app/api/listings/route.ts @@ -163,6 +163,7 @@ export async function GET(req: Request) { hasBarbecue: listing.hasBarbecue, hasMicrowave: listing.hasMicrowave, hasFreeParking: listing.hasFreeParking, + hasSkiPass: listing.hasSkiPass, evChargingAvailable: listing.evChargingAvailable, maxGuests: listing.maxGuests, bedrooms: listing.bedrooms, diff --git a/app/listings/page.tsx b/app/listings/page.tsx index 60c4b17..fd65288 100644 --- a/app/listings/page.tsx +++ b/app/listings/page.tsx @@ -31,6 +31,7 @@ type ListingResult = { hasMicrowave: boolean; hasFreeParking: boolean; evChargingAvailable: boolean; + hasSkiPass: boolean; maxGuests: number; bedrooms: number; beds: number;