Skip to content

Commit 9c02398

Browse files
committed
[fix] #180 잘못된 ui 수정
1 parent 64408ae commit 9c02398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Projects/Feature/FeatureRecommend/Sources/Recommend/RecommendView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ private extension RecommendView {
5353
ScrollView(.horizontal, showsIndicators: false) {
5454
interestListContent(proxy)
5555
.padding(.horizontal, 20)
56-
.padding(.top, 8)
57-
.padding(.bottom, 12)
56+
.padding(.vertical, 8)
5857
}
5958
.overlay(alignment: .trailing) {
6059
interestEditButton
6160
}
61+
.padding(.bottom, 4)
6262
}
6363
}
6464

@@ -175,7 +175,7 @@ private extension RecommendView {
175175
@ViewBuilder
176176
func recomendedCard(_ content: BaseContentItem) -> some View {
177177
VStack(alignment: .leading, spacing: 0) {
178-
if let url = URL(string: content.data) {
178+
if let url = URL(string: content.thumbNail) {
179179
recommendedImage(url: url)
180180
}
181181

0 commit comments

Comments
 (0)