Skip to content

Commit

Permalink
fea/#213 내 모임 리스트에서 모임 상세 페이지 연결 시 meetingID 전달
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaybei committed Jul 18, 2024
1 parent 48de49a commit a0fc48f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ extension MeetingListViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let viewController = MeetingInfoViewController(
viewModel: MeetingInfoViewModel(
meetingID: 1,
meetingID: viewModel.meetingList.value?.data?.meetings[indexPath.item].meetingID ?? 0,
service: MockMeetingInfoService()
)
)
Expand Down

0 comments on commit a0fc48f

Please sign in to comment.