We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64408ae commit 9c02398Copy full SHA for 9c02398
1 file changed
Projects/Feature/FeatureRecommend/Sources/Recommend/RecommendView.swift
@@ -53,12 +53,12 @@ private extension RecommendView {
53
ScrollView(.horizontal, showsIndicators: false) {
54
interestListContent(proxy)
55
.padding(.horizontal, 20)
56
- .padding(.top, 8)
57
- .padding(.bottom, 12)
+ .padding(.vertical, 8)
58
}
59
.overlay(alignment: .trailing) {
60
interestEditButton
61
+ .padding(.bottom, 4)
62
63
64
@@ -175,7 +175,7 @@ private extension RecommendView {
175
@ViewBuilder
176
func recomendedCard(_ content: BaseContentItem) -> some View {
177
VStack(alignment: .leading, spacing: 0) {
178
- if let url = URL(string: content.data) {
+ if let url = URL(string: content.thumbNail) {
179
recommendedImage(url: url)
180
181
0 commit comments