Merged in fix/LOY-430-filter-old-campaigns (pull request #3317)

fix(LOY-430): don't show inactive campaigns

* fix(LOY-430): don't show inactive campaigns


Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Matilda Landström
2025-12-09 10:51:23 +00:00
parent 359f034041
commit 8764945b2f
2 changed files with 12 additions and 3 deletions

View File

@@ -35,6 +35,7 @@ import type { locationSchema } from "../routers/hotels/schemas/hotel/location"
import type { parkingSchema } from "../routers/hotels/schemas/hotel/parking"
import type { pointOfInterestSchema } from "../routers/hotels/schemas/hotel/poi"
import type { ratingsSchema } from "../routers/hotels/schemas/hotel/rating"
import type { rewardNightSchema } from "../routers/hotels/schemas/hotel/rewardNight"
import type { imageSchema } from "../routers/hotels/schemas/image"
export type HotelData = z.output<typeof hotelSchema>
@@ -88,6 +89,8 @@ export type HotelInput = z.input<typeof hotelInputSchema>
export type RoomType = Pick<Room, "roomTypes" | "name">
export type RewardNight = z.output<typeof rewardNightSchema>
export interface HotelFilter {
id: FacilityEnum
name: string