Skip to content

Commit

Permalink
fix: cancelled reservations blocking reservation
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Jun 10, 2024
1 parent 99700bb commit 3ca5aeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ui/gql/gql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7940,7 +7940,7 @@ export const BlockingReservationFieldsFragmentDoc = gql`
`;
export const IsReservableFieldsFragmentDoc = gql`
fragment IsReservableFields on ReservationUnitNode {
reservationSet {
reservationSet(state: $state) {
...BlockingReservationFields
}
bufferTimeBefore
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/modules/queries/reservationUnit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const RESERVATION_UNIT_PARAMS_PAGE_QUERY = gql`
const IS_RESERVABLE_FRAGMENT = gql`
${BLOCKING_RESERVATION_FRAGMENT}
fragment IsReservableFields on ReservationUnitNode {
reservationSet {
reservationSet(state: $state) {
...BlockingReservationFields
}
bufferTimeBefore
Expand Down

0 comments on commit 3ca5aeb

Please sign in to comment.