diff --git a/lib/api/services/auth_service.dart b/lib/api/services/auth_service.dart index 2413dba..1486645 100644 --- a/lib/api/services/auth_service.dart +++ b/lib/api/services/auth_service.dart @@ -132,7 +132,7 @@ class AuthService { Future changePassword(String newPassword, String token) async { final response = await _dio.post( - '/api/auth/lpassword', + '/api/auth/login_password', data: {'login_password': newPassword}, options: Options(headers: {'Authorization': 'Bearer $token'}), );