From 51a79010eef9005a0b6fac6094b623ad78d55c3b Mon Sep 17 00:00:00 2001 From: youn9k Date: Wed, 4 Sep 2024 23:25:52 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20::=20=EC=BD=94=EB=93=9C=20Format?= =?UTF-8?q?ting=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewControllers/MyInfo/MyInfoViewController.swift | 2 +- .../MyInfoFeature/Sources/Views/FruitDrawButtonView.swift | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Projects/Features/MyInfoFeature/Sources/ViewControllers/MyInfo/MyInfoViewController.swift b/Projects/Features/MyInfoFeature/Sources/ViewControllers/MyInfo/MyInfoViewController.swift index 9075a6b68..60cb00400 100644 --- a/Projects/Features/MyInfoFeature/Sources/ViewControllers/MyInfo/MyInfoViewController.swift +++ b/Projects/Features/MyInfoFeature/Sources/ViewControllers/MyInfo/MyInfoViewController.swift @@ -247,7 +247,7 @@ final class MyInfoViewController: BaseReactorViewController, Edit .map { MyInfoReactor.Action.fruitNavigationDidTap } .bind(to: reactor.action) .disposed(by: disposeBag) - + myInfoView.rx.drawButtonDidTap .do(onNext: { LogManager.analytics(MyInfoAnalyticsLog.clickFruitDrawEntryButton(location: .myPage)) }) .map { MyInfoReactor.Action.drawButtonDidTap } diff --git a/Projects/Features/MyInfoFeature/Sources/Views/FruitDrawButtonView.swift b/Projects/Features/MyInfoFeature/Sources/Views/FruitDrawButtonView.swift index fb01396a0..83002867f 100644 --- a/Projects/Features/MyInfoFeature/Sources/Views/FruitDrawButtonView.swift +++ b/Projects/Features/MyInfoFeature/Sources/Views/FruitDrawButtonView.swift @@ -40,9 +40,9 @@ final class FruitDrawButtonView: UIView { lineHeight: UIFont.WMFontSystem.t5().lineHeight, kernValue: -0.5 ) - + let fruitStorageButton = UIButton() - + let drawButton = UIButton().then { $0.titleLabel?.font = DesignSystemFontFamily.Pretendard.medium.font(size: 14) $0.setTitle("뽑기", for: .normal) @@ -94,7 +94,7 @@ extension FruitDrawButtonView { $0.leading.equalTo(backgroundView.snp.leading) $0.trailing.equalTo(drawButton.snp.leading) } - + drawButton.snp.makeConstraints { $0.verticalEdges.equalTo(backgroundView.snp.verticalEdges) $0.trailing.equalTo(backgroundView.snp.trailing)