Skip to content

Commit

Permalink
[FIX/#177] FeedView 터치 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkySide committed Nov 3, 2024
1 parent 54e951b commit 3b90a7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
1 change: 1 addition & 0 deletions PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ private struct FeedRowView: View {

FeedContentImage(track: track)
.padding(.bottom, 6)
.zIndex(-1)

FeedContentView(track: track)
.padding(.bottom, 8)
Expand Down

0 comments on commit 3b90a7d

Please sign in to comment.