From d1305e1dba27752641e50ae20a6311b5aa8056b4 Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Thu, 19 Jun 2025 11:39:52 +0530 Subject: [PATCH] feat: Increase default timeout duration for API requests from 10 to 30 seconds --- lib/helpers/services/api_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/services/api_service.dart b/lib/helpers/services/api_service.dart index b7ebb52..40ef2b6 100644 --- a/lib/helpers/services/api_service.dart +++ b/lib/helpers/services/api_service.dart @@ -11,7 +11,7 @@ import 'package:marco/helpers/services/storage/local_storage.dart'; final Logger logger = Logger(); class ApiService { - static const Duration timeout = Duration(seconds: 10); + static const Duration timeout = Duration(seconds: 30); static const bool enableLogs = true; static const Duration extendedTimeout = Duration(seconds: 60);