diff --git a/SodaLive/Sources/MyPage/MyPageView.swift b/SodaLive/Sources/MyPage/MyPageView.swift index de3b2f0..d8e83c3 100644 --- a/SodaLive/Sources/MyPage/MyPageView.swift +++ b/SodaLive/Sources/MyPage/MyPageView.swift @@ -257,11 +257,11 @@ struct ProfileSectionView: View { VStack(spacing: 16) { HStack(spacing: 20) { // Profile Image Placeholder - KFImage(URL(string: profileUrl)) - .cancelOnDisappear(true) - .resizable() - .frame(width: 64, height: 64) - .clipShape(Circle()) + DownsampledKFImage( + url: URL(string: profileUrl), + size: CGSize(width: 64, height: 64) + ) + .clipShape(Circle()) VStack(alignment: .leading) { Text("\(nickname)") @@ -481,7 +481,7 @@ struct RecentContentSection: View { .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { - HStack(spacing: 16) { + LazyHStack(spacing: 16) { ForEach(0..