From fd3ea8dde02f01896c2d9564455c3477c831ac00 Mon Sep 17 00:00:00 2001 From: Aditya Date: Sat, 30 May 2026 16:28:02 +0530 Subject: [PATCH] fix: remove debug print statement from ApiService Remove production print() statement in ApiService.getOrgByYear() that leaked the API URL to the console. This is a code quality improvement as part of #417. Before: print("status is" + allOrg); --- lib/services/ApiService.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/services/ApiService.dart b/lib/services/ApiService.dart index a2013128..97ffc0d6 100644 --- a/lib/services/ApiService.dart +++ b/lib/services/ApiService.dart @@ -30,7 +30,6 @@ class ApiService { break; } final String allOrg = '$baseUrl$yearOrgUrl'; - print("status is" + allOrg); try { Response response = await Dio().get(allOrg + ".json"); if (response.statusCode == 200) {