fix: make Bed and Breakfast Accordion texts dynamic based on selection

This commit is contained in:
Arvid Norlin
2024-10-18 14:33:06 +02:00
parent f836695919
commit 3ea48b3846
2 changed files with 32 additions and 3 deletions

View File

@@ -4,3 +4,10 @@ export enum StepEnum {
details = "details",
payment = "payment",
}
export const StepStoreKeys: Record<StepEnum, "bedType" | "breakfast" | null> = {
"select-bed": "bedType",
breakfast: "breakfast",
details: null,
payment: null,
}