Skip to content

Commit

Permalink
chore/#162 유진이 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaybei committed Jul 12, 2024
1 parent d148438 commit 4368252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions KkuMulKum/Source/MeetingList/View/MeetingListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class MeetingListView: BaseView {
$0.setText("모임 추가하기", style: .body05, color: .green3)
}

private let addIcon = UIImageView().then {
private let addIconImageView = UIImageView().then {
$0.image = .icGroupPlus
}

Expand All @@ -56,7 +56,7 @@ final class MeetingListView: BaseView {
self.backgroundColor = .gray0
addSubview(tableView)
header.addSubviews(infoLabel, addButton, addInfoView)
addInfoView.addArrangedSubviews(addIcon, addInfoLabel)
addInfoView.addArrangedSubviews(addIconImageView, addInfoLabel)
}

override func setupAutoLayout() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class MeetingListViewController: BaseViewController {
register()
setupDelegate()

updateMeeingList()
updateMeetingList()
}


Expand All @@ -53,7 +53,7 @@ class MeetingListViewController: BaseViewController {
rootView.tableView.dataSource = self
}

private func updateMeeingList() {
private func updateMeetingList() {
viewModel.meetingListData.bind { [weak self] _ in
DispatchQueue.main.async {
self?.rootView.tableView.reloadData()
Expand Down

0 comments on commit 4368252

Please sign in to comment.