Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
♻️ :: [#198] ClubMemberListCell / init 위치 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
shwaaaa committed Apr 8, 2024
1 parent 796da44 commit 544aeba
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ final class ClubMemberListCell: BaseTableViewCell<Void> {
$0.translatesAutoresizingMaskIntoConstraints = false
}

required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

override func addView() {
contentView.addSubViews(profileImageView, nameLabel, studentNumberLabel, attendCheckBox)
}
Expand Down Expand Up @@ -71,4 +67,8 @@ final class ClubMemberListCell: BaseTableViewCell<Void> {
attendCheckBox.image = GCMSAsset.Images.checkBox.image
}
}

required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

0 comments on commit 544aeba

Please sign in to comment.