Skip to content

Commit

Permalink
M3-339 Refactor : dart fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koomin1227 committed Sep 12, 2024
1 parent 0189626 commit 93b6150
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/controllers/map_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ class MapController extends SuperController {
currentPixelCount.value = pixelCount.currentPixelCount!;
currentCommunityPixelCount.value =
await communityService.getCommunityPixelCount(
Get.find<MyPageController>().currentUserInfo.value.communityId);
Get.find<MyPageController>().currentUserInfo.value.communityId,
);
accumulatePixelCount.value = pixelCount.accumulatePixelCount!;
accumulatePixelCountPerPeriod.value =
pixelCountPeriod.accumulatePixelCount!;
Expand Down
2 changes: 1 addition & 1 deletion lib/service/ranking_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class RankingService {
"name": "가입한 그룹이 없습니다.",
"rank": null,
"profileImageUrl": null,
"currentPixelCount": null
"currentPixelCount": null,
});
}
var response = await dio.get(
Expand Down

0 comments on commit 93b6150

Please sign in to comment.