This commit is contained in:
amirrezaghabeli
2025-08-18 10:19:05 +03:30
parent c6e77e5337
commit 4874153488
7 changed files with 62 additions and 33 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class ProfileService {
Future<Result<ProfileResponse>> getProfile() async {
final result = await _networkManager.makeRequest(
'/admin/v1/profile',
'/api/v1/profile',
method: 'GET',
(json) => ProfileResponse.fromJson(json),
);