Merged in feat/SW-1207-parking-teaser (pull request #1217)

Feat(SW-1207): Add parking elevator pitch to hotel sidepeek

* feat(SW-1207): Add parking elevator pitch to hotel sidepeek

* fix(SW-1207): remove optional from parking elevator pitch


Approved-by: Erik Tiekstra
Approved-by: Fredrik Thorsson
This commit is contained in:
Matilda Landström
2025-01-28 13:23:47 +00:00
parent 8d755071bc
commit 0dee660609
7 changed files with 26 additions and 10 deletions

View File

@@ -29,8 +29,8 @@ export const restaurantsOverviewPageSchema = z.object({
restaurantsContentDescriptionMedium: z.string().optional(),
})
const extraPageSchema = z.object({
elevatorPitch: z.string().optional(),
export const extraPageSchema = z.object({
elevatorPitch: z.string(),
mainBody: z.string().optional(),
})