diff --git a/lib/api_service.dart b/lib/api_service.dart
index 384a5726..01f77493 100644
--- a/lib/api_service.dart
+++ b/lib/api_service.dart
@@ -76,7 +76,7 @@ Future<List<Tasks>> fetchTasks(String uuid, String encryptionSecret) async {
 
     var response = await http.get(Uri.parse(url), headers: {
       "Content-Type": "application/json",
-    }).timeout(const Duration(seconds: 10000));
+    }).timeout(const Duration(seconds: 10));
     if (response.statusCode == 200) {
       List<dynamic> allTasks = jsonDecode(response.body);
       debugPrint(allTasks.toString());