diff --git a/lib/controller/layout/layout_controller.dart b/lib/controller/layout/layout_controller.dart index 1ee06ea..f7be536 100644 --- a/lib/controller/layout/layout_controller.dart +++ b/lib/controller/layout/layout_controller.dart @@ -55,7 +55,7 @@ class LayoutController extends GetxController { isLoadingProjects.value = true; try { - final response = await ApiService.getProjects(); + final response = await ApiService.getGlobalProjects(); if (response != null && response.isNotEmpty) { final fetchedProjects = response.map((json) => ProjectModel.fromJson(json)).toList();