Skip to content

Commit

Permalink
๐Ÿ› constraint warning ์ œ๊ฑฐ
Browse files Browse the repository at this point in the history
  • Loading branch information
wendoei committed Aug 16, 2024
1 parent 841d04c commit 9622bca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ private extension MainViewController {
self.view.addSubview(bubbleCommentView)
bubbleCommentView.snp.makeConstraints {
$0.centerX.equalToSuperview()
$0.verticalEdges.greaterThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(16)
$0.top.greaterThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(16)
$0.width.lessThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(32)
$0.bottom.equalTo(musicDropButton.snp.top).offset(-10)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,6 @@ private extension SearchingMusicViewController {
// TODO: 56 -> 60์œผ๋กœ ๋ฐ”๊ผˆ๋Š”์ง€ ์ถ”ํ›„์— ํ”ผ๊ทธ๋งˆ ํ™•์ธ
$0.height.equalTo(56)
$0.top.equalTo(view.safeAreaLayoutGuide)
$0.top.equalTo(bannerView.snp.bottom).offset(10)
$0.leading.equalToSuperview()
$0.trailing.equalToSuperview()
}
Expand Down

0 comments on commit 9622bca

Please sign in to comment.