From 6b8827f4d9dc586b625b4a6b6a6493a12fae22a6 Mon Sep 17 00:00:00 2001 From: Rafeek-Khoudare Date: Tue, 15 Jul 2025 15:37:08 +0300 Subject: [PATCH] fixes after merge --- .../data/services/remote_bookable_spaces_service.dart | 2 +- .../access_management/booking_system/view/booking_page.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/access_management/booking_system/data/services/remote_bookable_spaces_service.dart b/lib/pages/access_management/booking_system/data/services/remote_bookable_spaces_service.dart index 3c2610db..5ed71116 100644 --- a/lib/pages/access_management/booking_system/data/services/remote_bookable_spaces_service.dart +++ b/lib/pages/access_management/booking_system/data/services/remote_bookable_spaces_service.dart @@ -18,7 +18,7 @@ class RemoteBookableSpacesService implements BookableSystemService { }) async { try { final response = await _httpService.get( - path: ApiEndpoints.getBookableSpaces, + path: ApiEndpoints.bookableSpaces, queryParameters: { 'page': param.page, 'size': param.size, diff --git a/lib/pages/access_management/booking_system/view/booking_page.dart b/lib/pages/access_management/booking_system/view/booking_page.dart index 4b4ca49f..67f7dbf3 100644 --- a/lib/pages/access_management/booking_system/view/booking_page.dart +++ b/lib/pages/access_management/booking_system/view/booking_page.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; +import 'package:syncrow_web/pages/access_management/booking_system/presentation/view/widgets/icon_text_button.dart'; -import 'package:syncrow_web/pages/access_management/booking_system/view/widgets/icon_text_button.dart'; import 'package:syncrow_web/utils/constants/assets.dart'; class BookingPage extends StatelessWidget {