From aab7ecb03df81b5169caf7c4957236c2a844fd92 Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Mon, 10 Nov 2025 13:26:49 -0500 Subject: [PATCH] fix url --- luckychit/lib/core/services/api_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luckychit/lib/core/services/api_service.dart b/luckychit/lib/core/services/api_service.dart index 59d57d5..fb4bf00 100644 --- a/luckychit/lib/core/services/api_service.dart +++ b/luckychit/lib/core/services/api_service.dart @@ -3,7 +3,7 @@ import 'package:shared_preferences/shared_preferences.dart'; class ApiService { // static const String baseUrl = 'http://localhost:3000/api'; -static const String baseUrl = 'http://localhost:3000/api'; +static const String baseUrl = 'https://chitfund.deepteklabs.com/api'; static const String tokenKey = 'auth_token'; late Dio _dio;