Open choigonyok opened 3 weeks ago
Future<Map<String, dynamic>> fetchProfile() async { final response = await apiService.fetchUserProfile( widget.token, "1"); // "1"은 실제 user_id로 대체해야 함 if (response.statusCode == 200) { return json.decode(response.body); } else { throw Exception('Failed to load profile'); } } '1'로 하드코딩 되어서 발생한 문제 같습니다. 실제 유저 id에 맞게 수정하겠습니다.
user_id가 2인 유저로 프로필을 조회해도 user_id가 1인 유저의 프로필만 확인 가능한 이슈