diff --git a/lib/core/init/dependency_injection.dart b/lib/core/init/dependency_injection.dart index 3193653..22255d4 100644 --- a/lib/core/init/dependency_injection.dart +++ b/lib/core/init/dependency_injection.dart @@ -12,8 +12,8 @@ import '../../features/account/business_logic_layer/account_controller.dart'; class DependencyInjection { static void injectDependencies() { - Get.put(SocketIO(uri: 'https://pages-chat-dev.octa-apps.com')); - // Get.put(SocketIO(uri: 'https://taafi-back-chat.point-dev.nl')); + // Get.put(SocketIO(uri: 'https://pages-chat-dev.octa-apps.com')); + Get.put(SocketIO(uri: 'https://taafi-back-chat.point-dev.nl')); Get.put(ChatController()); Get.put(AuthController()); Get.put(HomeController()); diff --git a/lib/core/network/dio.dart b/lib/core/network/dio.dart index 5803e10..5890385 100644 --- a/lib/core/network/dio.dart +++ b/lib/core/network/dio.dart @@ -8,8 +8,8 @@ class DioInstance { Dio _instantiate() { _dio = Dio( BaseOptions( - baseUrl: "https://pages-back-dev.octa-apps.com/api/", - // baseUrl: "https://taafi-back.point-dev.nl/api/", + // baseUrl: "https://pages-back-dev.octa-apps.com/api/", + baseUrl: "https://taafi-back.point-dev.nl/api/", receiveDataWhenStatusError: true, ), );