From 540bc170c3d01a227ae72f644b15551f1d829d4a Mon Sep 17 00:00:00 2001 From: JinUng41 Date: Sun, 1 Sep 2024 13:46:58 +0900 Subject: [PATCH] =?UTF-8?q?fix/#353=20=EC=9A=B0=EC=B8=A1=20=ED=99=94?= =?UTF-8?q?=EC=82=B4=ED=91=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Source/MeetingInfo/View/MeetingInfoView.swift | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/KkuMulKum/Source/MeetingInfo/View/MeetingInfoView.swift b/KkuMulKum/Source/MeetingInfo/View/MeetingInfoView.swift index e5bf2150..e802e016 100644 --- a/KkuMulKum/Source/MeetingInfo/View/MeetingInfoView.swift +++ b/KkuMulKum/Source/MeetingInfo/View/MeetingInfoView.swift @@ -57,12 +57,6 @@ final class MeetingInfoView: BaseView { $0.setText("모임 참여 인원 0명", style: .body01, color: .gray8) } - private let arrowButton = UIButton().then { - let image = UIImage(resource: .iconRight).withTintColor(.gray4) - $0.setImage(image, for: .normal) - $0.contentMode = .scaleAspectFill - } - private let createPromiseButton = UIButton(backgroundColor: .maincolor).then { $0.setTitle("+ 약속추가", style: .body01, color: .white) $0.layer.cornerRadius = Screen.height(52) / 2 @@ -102,7 +96,7 @@ final class MeetingInfoView: BaseView { ) emptyDescriptionView.addSubviews(emptyDescriptionLabel) addSubviews( - infoBanner, memberCountLabel, arrowButton, memberListView, createPromiseButton, + infoBanner, memberCountLabel, memberListView, createPromiseButton, grayBackgroundView ) bringSubviewToFront(createPromiseButton) @@ -121,11 +115,6 @@ final class MeetingInfoView: BaseView { $0.leading.equalTo(infoBanner) } - arrowButton.snp.makeConstraints { - $0.trailing.equalToSuperview().offset(-20) - $0.centerY.equalTo(memberCountLabel) - } - memberListView.snp.makeConstraints { $0.top.equalTo(memberCountLabel.snp.bottom).offset(20) $0.horizontalEdges.equalToSuperview()