diff --git a/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift b/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift index c5c4c5f0..94689db8 100644 --- a/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift +++ b/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift @@ -247,6 +247,7 @@ extension AppleMusicControllerServiceImpl { private func requestSongIds(for isrcs: [String]) async -> [String] { var songIDs: [String] = [] + // TODO: 병렬 처리 필요 for isrc in isrcs { await requestSongId(for: isrc) if let songId = self.firstSong?.id { diff --git a/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift b/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift index 7e57d4e5..08f94426 100644 --- a/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift +++ b/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift @@ -224,6 +224,7 @@ private struct FeedRowView: View { FeedContentImage(track: track) .padding(.bottom, 6) + .zIndex(-1) FeedContentView(track: track) .padding(.bottom, 8)