Skip to content

Commit

Permalink
fix: missing reservation price on single page
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Jan 10, 2025
1 parent 9fec92f commit 14d1f44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/ui/gql/gql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8180,6 +8180,7 @@ export type ReservationPageQuery = {
end: string;
calendarUrl?: string | null;
state?: ReservationStateChoice | null;
price?: string | null;
reserveeFirstName?: string | null;
reserveeLastName?: string | null;
reserveeEmail?: string | null;
Expand Down Expand Up @@ -12178,6 +12179,7 @@ export const ReservationPageDocument = gql`
end
calendarUrl
state
price
paymentOrder {
id
status
Expand Down
1 change: 1 addition & 0 deletions apps/ui/pages/reservations/[id]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,7 @@ export const GET_RESERVATION_PAGE_QUERY = gql`
end
calendarUrl
state
price
paymentOrder {
id
status
Expand Down

0 comments on commit 14d1f44

Please sign in to comment.