Skip to content

Commit

Permalink
[FIX/#73] 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Jan 12, 2024
1 parent 100c0e2 commit 992a39d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CompletedTripFragment :
}

private fun setTripList() {
val progress = "complete"
val progress = DashBoardViewModel.COMPLETED
viewModel.getTripListFromServer(progress)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class OngoingTripFragment :
}

private fun setTripList() {
val progress = "incomplete"
val progress = DashBoardViewModel.ONGOING
viewModel.getTripListFromServer(progress)
}

Expand Down

0 comments on commit 992a39d

Please sign in to comment.