fix: remove Herrnhof Villa from accommodation options
Herrnhof Villa venue and all its room options (living room, triple, twin, single, couple) removed from both ACCOMMODATION_VENUES and BOOKING_CRITERIA. Only Commons Hub remains. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
4b194a04f1
commit
668ae29275
|
|
@ -89,53 +89,6 @@ export const ACCOMMODATION_VENUES: AccommodationVenue[] = [
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
key: "herrnhof",
|
||||
name: "Herrnhof Villa",
|
||||
description: "Nearby villa with a range of room options.",
|
||||
options: [
|
||||
{
|
||||
id: "hh-living",
|
||||
label: "Bed in living room",
|
||||
price: 315,
|
||||
nightlyRate: 45,
|
||||
venue: "Herrnhof Villa",
|
||||
venueKey: "herrnhof",
|
||||
},
|
||||
{
|
||||
id: "hh-triple",
|
||||
label: "Bed in triple room",
|
||||
price: 350,
|
||||
nightlyRate: 50,
|
||||
venue: "Herrnhof Villa",
|
||||
venueKey: "herrnhof",
|
||||
},
|
||||
{
|
||||
id: "hh-twin",
|
||||
label: "Single bed in double room",
|
||||
price: 420,
|
||||
nightlyRate: 60,
|
||||
venue: "Herrnhof Villa",
|
||||
venueKey: "herrnhof",
|
||||
},
|
||||
{
|
||||
id: "hh-single",
|
||||
label: "Single room",
|
||||
price: 665,
|
||||
nightlyRate: 95,
|
||||
venue: "Herrnhof Villa",
|
||||
venueKey: "herrnhof",
|
||||
},
|
||||
{
|
||||
id: "hh-couple",
|
||||
label: "Couple room",
|
||||
price: 700,
|
||||
nightlyRate: 100,
|
||||
venue: "Herrnhof Villa",
|
||||
venueKey: "herrnhof",
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
/** Flat map of accommodation ID → option for quick lookup */
|
||||
|
|
@ -167,26 +120,6 @@ export const BOOKING_CRITERIA: Record<string, BookingCriteria> = {
|
|||
venue: "Commons Hub",
|
||||
bedTypes: ["double", "double (shared)"],
|
||||
},
|
||||
"hh-living": {
|
||||
venue: "Herrnhof Villa",
|
||||
bedTypes: ["daybed", "extra bed"],
|
||||
},
|
||||
"hh-triple": {
|
||||
venue: "Herrnhof Villa",
|
||||
bedTypes: ["single", "bunk up", "bunk down"],
|
||||
},
|
||||
"hh-twin": {
|
||||
venue: "Herrnhof Villa",
|
||||
bedTypes: ["single"],
|
||||
},
|
||||
"hh-single": {
|
||||
venue: "Herrnhof Villa",
|
||||
bedTypes: ["double"],
|
||||
},
|
||||
"hh-couple": {
|
||||
venue: "Herrnhof Villa",
|
||||
bedTypes: ["double"],
|
||||
},
|
||||
}
|
||||
|
||||
// ── Form field toggles ────────────────────────────────────────────
|
||||
|
|
|
|||
Loading…
Reference in New Issue