Skip to content

Commit

Permalink
🎨 :: 코드 Formatting 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
youn9k committed Sep 4, 2024
1 parent d00da82 commit 51a7901
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ final class MyInfoViewController: BaseReactorViewController<MyInfoReactor>, 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 }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 51a7901

Please sign in to comment.