feat: allow direct access to my stay from booking confirmation
This commit is contained in:
+4
-3
@@ -1,3 +1,4 @@
|
||||
export interface ManageBookingProps {
|
||||
bookingUrl: string
|
||||
}
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
|
||||
export interface ManageBookingProps
|
||||
extends Pick<BookingConfirmation, "booking"> {}
|
||||
|
||||
-1
@@ -16,7 +16,6 @@ export interface BookingConfirmationRoom extends Room {
|
||||
export interface ConfirmationProps
|
||||
extends Pick<BookingConfirmation, "booking" | "hotel"> {
|
||||
room: BookingConfirmationRoom
|
||||
refId: string
|
||||
}
|
||||
|
||||
export interface BookingConfirmationAlertsProps {
|
||||
|
||||
@@ -5,5 +5,4 @@ import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmat
|
||||
export interface BookingConfirmationHeaderProps
|
||||
extends Pick<BookingConfirmation, "booking" | "hotel"> {
|
||||
mainRef: MutableRefObject<HTMLElement | null>
|
||||
refId: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user